# HG changeset patch # User Paul Eggert # Date 1137918713 0 # Node ID bc61a0c9a7500a3f54a95fcdb76b0001c670881b # Parent 8f0df7d466dc3049141dca77ae6298fd513e3108 * gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp. diff --git a/ChangeLog b/ChangeLog --- 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 --- a/build-aux/csharpcomp.sh.in +++ b/build-aux/csharpcomp.sh.in @@ -47,7 +47,7 @@ { # 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 --- 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 @@ { # 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" } || {