From: Bruno Haible Date: Wed, 26 May 2004 12:15:23 +0000 (+0000) Subject: Avoid using ! sh builtin. X-Git-Tag: v0.14.2~257 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5d3a7f8b6671267d3297be021b0224fcd3be51cb;p=thirdparty%2Fgettext.git Avoid using ! sh builtin. --- diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index 364de4738..44c525d56 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -1,3 +1,8 @@ +2004-04-26 Bruno Haible + + * csharpcomp.m4 (gt_CSHARPCOMP): Avoid using !. + Reported by Alexandre Duret-Lutz. + 2004-04-19 Bruno Haible * error.m4: Change jm_ to gl_ in AC_DEFINE'd names. Update all uses. diff --git a/gettext-tools/m4/csharpcomp.m4 b/gettext-tools/m4/csharpcomp.m4 index 063ef049f..7aed98393 100644 --- a/gettext-tools/m4/csharpcomp.m4 +++ b/gettext-tools/m4/csharpcomp.m4 @@ -1,4 +1,4 @@ -# csharpcomp.m4 serial 3 (gettext-0.15) +# csharpcomp.m4 serial 4 (gettext-0.15) dnl Copyright (C) 2003-2004 Free Software Foundation, Inc. dnl This file is free software, distributed under the terms of the GNU dnl General Public License. As a special exception to the GNU General @@ -44,7 +44,7 @@ AC_DEFUN([gt_CSHARPCOMP], sscli) if test -n "$HAVE_CSC_IN_PATH" \ && csc -help >/dev/null 2>/dev/null \ - && ! { csc -help 2>/dev/null | grep -i chicken > /dev/null; }; then + && { if csc -help 2>/dev/null | grep -i chicken > /dev/null; then false; else true; fi; }; then HAVE_CSC=1 ac_result="csc" break