From d2d26654190154b746b37ab5ab2cba08d9188ea0 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 22 Jan 2006 08:31:53 +0000 Subject: [PATCH] * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp. --- ChangeLog | 5 +++++ build-aux/csharpcomp.sh.in | 2 +- gnulib-tool | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 00566fb9dd..7f424f2fbc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-01-22 Ralf Wildenhues (tiny change) + + * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp. + Reported by Bruce Korb . + 2006-01-21 Sergey Poznyakoff * modules/argp-tests: New module diff --git a/build-aux/csharpcomp.sh.in b/build-aux/csharpcomp.sh.in index da0d1ba2de..0295a1b2b4 100644 --- a/build-aux/csharpcomp.sh.in +++ b/build-aux/csharpcomp.sh.in @@ -47,7 +47,7 @@ func_tmpdir () { # Use the mktemp program if available. If not available, hide the error # message. - tmp=`(umask 077 && mktemp -d -q "$TMPDIR/gtXXXXXX") 2>/dev/null` && + tmp=`(umask 077 && mktemp -d "$TMPDIR/gtXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { diff --git a/gnulib-tool b/gnulib-tool index 45c1449dd2..6b4d6e5670 100755 --- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2006-01-19 09:05:56 $' +cvsdatestamp='$Date: 2006-01-22 08:31:53 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` @@ -152,7 +152,7 @@ func_tmpdir () { # Use the mktemp program if available. If not available, hide the error # message. - tmp=`(umask 077 && mktemp -d -q "$TMPDIR/glXXXXXX") 2>/dev/null` && + tmp=`(umask 077 && mktemp -d "$TMPDIR/glXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { -- 2.30.2