summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMathias Krause <minipli@googlemail.com>2012-09-01 20:55:29 +0200
committerStephen Hemminger <shemminger@vyatta.com>2012-09-04 09:42:16 -0700
commitc2f7d6c7c40e7bb9568fbc41bee921192aa228bc (patch)
tree985d6846e3022012d87d96aa0ec087685607d5c1 /configure
parent57b9785de32404da3d2ac5483469b7fcc5a9c9e7 (diff)
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>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index db7cd6a8..2c2d1c45 100755
--- a/configure
+++ b/configure
@@ -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()
{