]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
mktemp's option -q is unreliable.
authorBruno Haible <bruno@clisp.org>
Mon, 23 Jan 2006 17:04:17 +0000 (17:04 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:12:59 +0000 (12:12 +0200)
gettext-tools/misc/ChangeLog
gettext-tools/misc/autopoint.in
gettext-tools/misc/gettextize.in

index a13287c0fad74dfd2e70e60a1338b7c8b92dd5b9..fedeaad442979e6e670c1eab1da4e3b6bb844e2f 100644 (file)
@@ -1,3 +1,12 @@
+2006-01-23  Bruno Haible  <bruno@clisp.org>
+
+       * gettextize.in (func_tmpdir): Invoke mktemp without option -q, because
+       in some versions of mktemp this option has the effect that mktemp
+       outputs nothing at all.
+       (func_version): Bump copyright year.
+       * autopoint.in (func_tmpdir): Invoke mktemp without option -q.
+       (func_version): Bump copyright year.
+
 2005-09-18  Bruno Haible  <bruno@clisp.org>
 
        * autopoint.in (func_find_curr_installdir): Really remove the temporary
index 71f89478fa7c815a9e472c647023c3f4091deebf..b0519bf541790ac5d7c8b123eef068d68084bb94 100644 (file)
@@ -1,6 +1,6 @@
 #! /bin/sh
 #
-# Copyright (C) 2002-2005 Free Software Foundation, Inc.
+# Copyright (C) 2002-2006 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -44,7 +44,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"
   } ||
   {
@@ -168,7 +168,7 @@ Report bugs to <bug-gnu-gettext@gnu.org>."
 func_version ()
 {
   echo "$progname (GNU $package) $version"
-  echo "Copyright (C) 2002-2005 Free Software Foundation, Inc.
+  echo "Copyright (C) 2002-2006 Free Software Foundation, Inc.
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
   echo "Written by" "Bruno Haible"
index b9f29981a04297654262184e29d18f0e47da7fc3..21f27bba6c70d5e84d94f594dca9d7f5c50dfaf1 100644 (file)
@@ -1,6 +1,6 @@
 #! /bin/sh
 #
-# Copyright (C) 1995-1998, 2000-2005 Free Software Foundation, Inc.
+# Copyright (C) 1995-1998, 2000-2006 Free Software Foundation, Inc.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -44,7 +44,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"
   } ||
   {
@@ -168,7 +168,7 @@ Report bugs to <bug-gnu-gettext@gnu.org>."
 func_version ()
 {
   echo "$progname (GNU $package) $version"
-  echo "Copyright (C) 1995-1998, 2000-2005 Free Software Foundation, Inc.
+  echo "Copyright (C) 1995-1998, 2000-2006 Free Software Foundation, Inc.
 This is free software; see the source for copying conditions.  There is NO
 warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
   echo "Written by" "Ulrich Drepper"