diff options
author | Tor Lillqvist <tml@iki.fi> | 2012-03-30 09:39:07 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2012-03-30 09:39:07 +0300 |
commit | febdb8aeb7dbb07b7380808ce0cecfa7bb2b6101 (patch) | |
tree | 1512723b927049c433f6ca2440f6d1bb5ac79e31 /configure.in | |
parent | adf0076b56869d804fbdac774318e65ec0b28554 (diff) |
Use mktemp(1) more portably
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index dcfb3ec8a613..face6c2c4108 100644 --- a/configure.in +++ b/configure.in @@ -3654,7 +3654,7 @@ if test "$_make_longver" -ge "038200"; then elif test "$_make_longver" -ge "038100"; then AC_MSG_RESULT([$GNUMAKE $_make_version]) AC_MSG_CHECKING([for GNU make bug 20033]) - TESTGMAKEBUG20033=`mktemp -d` + TESTGMAKEBUG20033=`mktemp -d tmp.XXXXXX` cat > $TESTGMAKEBUG20033/Makefile << EOF A := \$(wildcard *.a) |