From c2f7d6c7c40e7bb9568fbc41bee921192aa228bc Mon Sep 17 00:00:00 2001 From: Mathias Krause Date: Sat, 1 Sep 2012 20:55:29 +0200 Subject: [PATCH] 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 --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() { -- 2.47.2