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:
Mathias Krause 2012-09-01 20:55:29 +02:00 committed by Stephen Hemminger
parent 57b9785de3
commit c2f7d6c7c4

2
configure vendored
View File

@ -5,7 +5,7 @@ INCLUDE=${1:-"$PWD/include"}
# Make a temp directory in build tree.
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()
{