From 61d2d28e5ac88d8b264e8386c4d611d0bf5dd455 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Mon, 5 Aug 2002 11:51:41 +0000 Subject: [PATCH] Avoid error message on Solaris. --- misc/ChangeLog | 5 +++++ misc/gettextize.in | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/misc/ChangeLog b/misc/ChangeLog index 36a3f6694..5b43ebeb8 100644 --- a/misc/ChangeLog +++ b/misc/ChangeLog @@ -1,3 +1,8 @@ +2002-08-03 Paul Eggert + + * gettextize.in: Use "read dummy" to avoid an error with Solaris + /bin/sh. + 2002-08-02 Bruno Haible * gettextize.in: Add ulonglong.m4 to m4filelist. diff --git a/misc/gettextize.in b/misc/gettextize.in index e1501076f..c23545086 100644 --- a/misc/gettextize.in +++ b/misc/gettextize.in @@ -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 -- 2.47.2