diff options
author | Mathias Krause <minipli@googlemail.com> | 2012-09-01 20:55:29 +0200 |
---|---|---|
committer | Stephen Hemminger <shemminger@vyatta.com> | 2012-09-04 09:42:16 -0700 |
commit | c2f7d6c7c40e7bb9568fbc41bee921192aa228bc (patch) | |
tree | 985d6846e3022012d87d96aa0ec087685607d5c1 /configure | |
parent | 57b9785de32404da3d2ac5483469b7fcc5a9c9e7 (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-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() { |