summaryrefslogtreecommitdiff
path: root/build-aux/csharpcomp.sh.in
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2006-01-22 08:31:53 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2006-01-22 08:31:53 +0000
commitd2d26654190154b746b37ab5ab2cba08d9188ea0 (patch)
tree899225873f85f15c761e2a48e913072322cdfea8 /build-aux/csharpcomp.sh.in
parentae6b9bb50051a801f86cfb72c56bfbb6f5675286 (diff)
downloadgnulib-d2d26654190154b746b37ab5ab2cba08d9188ea0.tar.gz
* gnulib-tool, build-aux/csharpcomp.sh.in: Do not pass `-q' to mktemp.
Diffstat (limited to 'build-aux/csharpcomp.sh.in')
-rw-r--r--build-aux/csharpcomp.sh.in2
1 files changed, 1 insertions, 1 deletions
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"
} ||
{