mirror of
https://git.proxmox.com/git/mirror_iproute2
synced 2025-10-19 11:49:01 +00:00
configure: remove TMPDIR on exit
Commit e557d1a
("Don't put configure files in /tmp") introduced a typo
that prevented automated cleanup of the temporary directory created for
feature testing. Fix this typo.
Signed-off-by: Mathias Krause <minipli@googlemail.com>
This commit is contained in:
parent
57b9785de3
commit
c2f7d6c7c4
2
configure
vendored
2
configure
vendored
@ -5,7 +5,7 @@ INCLUDE=${1:-"$PWD/include"}
|
|||||||
|
|
||||||
# Make a temp directory in build tree.
|
# Make a temp directory in build tree.
|
||||||
TMPDIR=$(mktemp -d config.XXXXXX)
|
TMPDIR=$(mktemp -d config.XXXXXX)
|
||||||
trap 'status=$?; rm -rf $TMPDIRa; exit $status' EXIT HUP INT QUIT TERM
|
trap 'status=$?; rm -rf $TMPDIR; exit $status' EXIT HUP INT QUIT TERM
|
||||||
|
|
||||||
check_atm()
|
check_atm()
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user