Commit c2f7d6c7 authored by Mathias Krause's avatar Mathias Krause Committed by Stephen Hemminger

configure: remove TMPDIR on exit

Commit e557d1ac ("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: default avatarMathias Krause <minipli@googlemail.com>
parent 57b9785d
......@@ -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()
{
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment