From: Mathias Krause Date: Sat, 1 Sep 2012 18:55:29 +0000 (+0200) Subject: configure: remove TMPDIR on exit X-Git-Tag: v3.6.0~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c2f7d6c7c40e7bb9568fbc41bee921192aa228bc;p=thirdparty%2Fiproute2.git 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 --- diff --git a/configure b/configure index db7cd6a88..2c2d1c45e 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() {