]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Avoid error message on Solaris.
authorBruno Haible <bruno@clisp.org>
Mon, 5 Aug 2002 11:51:41 +0000 (11:51 +0000)
committerBruno Haible <bruno@clisp.org>
Tue, 23 Jun 2009 10:08:43 +0000 (12:08 +0200)
misc/ChangeLog
misc/gettextize.in

index 36a3f6694ac7b9cabc8b11187be906c8650541a6..5b43ebeb8c428a5b5cc9bf970ff495e4c0087eaa 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-03  Paul Eggert  <eggert@twinsun.com>
+
+       * gettextize.in: Use "read dummy" to avoid an error with Solaris
+       /bin/sh.
+
 2002-08-02  Bruno Haible  <bruno@clisp.org>
 
        * gettextize.in: Add ulonglong.m4 to m4filelist.
index e1501076f4e95e6e90b633abedac0f552c1a820b..c23545086c0679bcfdd5c4d5544bb5ffe26eb58c 100644 (file)
@@ -968,7 +968,7 @@ if $doit; then
   echo "Press Return to acknowledge the previous $count."
   # Read from /dev/tty, not stdin, so that gettextize cannot be abused by
   # non-interactive tools.
-  read < /dev/tty
+  read dummy < /dev/tty
 fi
 
 exit 0