diff options
author | Bruno Haible <bruno@clisp.org> | 2003-05-21 14:42:47 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:10:36 +0200 |
commit | 27ea4752a3fd01233679790cd1301c6a357839e1 (patch) | |
tree | f442e44386f5193061287fbebba848192b11d0ac /gettext-tools | |
parent | c323554562ffe00970b4f001fa7cc65afcf8daf4 (diff) | |
download | external_gettext-27ea4752a3fd01233679790cd1301c6a357839e1.zip external_gettext-27ea4752a3fd01233679790cd1301c6a357839e1.tar.gz external_gettext-27ea4752a3fd01233679790cd1301c6a357839e1.tar.bz2 |
Fix mismatched parentheses.
Diffstat (limited to 'gettext-tools')
-rw-r--r-- | gettext-tools/src/ChangeLog | 5 | ||||
-rw-r--r-- | gettext-tools/src/msggrep.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/gettext-tools/src/ChangeLog b/gettext-tools/src/ChangeLog index 252587e..60f7047 100644 --- a/gettext-tools/src/ChangeLog +++ b/gettext-tools/src/ChangeLog @@ -1,5 +1,10 @@ 2003-05-21 Bruno Haible <bruno@clisp.org> + * msggrep.c (main) [Solaris]: Fix syntax error. + Reported by Valery Beaud <valery.beaud@art.alcatel.fr>. + +2003-05-21 Bruno Haible <bruno@clisp.org> + * xgettext.c (output_syntax): New variable. (main): Set it. (finalize_header): If --properties-output was given, set the charset. diff --git a/gettext-tools/src/msggrep.c b/gettext-tools/src/msggrep.c index fba6e74..f6928a5 100644 --- a/gettext-tools/src/msggrep.c +++ b/gettext-tools/src/msggrep.c @@ -346,7 +346,7 @@ warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n\ -q and -e. */ #if (defined (sun) || defined (__sun)) && defined (__SVR4) if ((strcmp (grep_path, "/usr/bin/grep") == 0 - || strcmp (grep_path, "/bin/grep") == 0)) + || strcmp (grep_path, "/bin/grep") == 0) && access ("/usr/xpg4/bin/grep", X_OK) == 0) grep_path = "/usr/xpg4/bin/grep"; #endif |