bug-bison
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: gnu bison 2.2 on IRIX 5.3


From: Paul Eggert
Subject: Re: gnu bison 2.2 on IRIX 5.3
Date: Mon, 22 May 2006 00:42:25 -0700
User-agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (gnu/linux)

Georg Schwarz <address@hidden> writes:

> Here is the output of make check:
>
> lorenz 104% /usr/local/pkg/bin/gmake check
> gzip 1.2.4 (18 Aug 93)
> usage: gzip [-cdfhlLnNrtvV19] [-S suffix] [file ...]
> ...

Ah, now I understand an earlier bug report by Keith Thompson.
I'll CC: this email to him.

I installed the following patch.  Can you please verify that it fixes
your problem?

Thanks.

2006-05-22  Paul Eggert  <address@hidden>

        * Makefile.maint (gzip_rsyncable, GZIP_ENV): Compute within the
        shell, not within 'make', so that 'make' by an ordinary builder
        (using GNU make) does not worry about configuring gzip.  This also
        works around a bug reported independently by Keith Thompson and by
        Georg Schwarz, whereby gzip 1.2.4 --help would output usage on
        stderr rather than stdout, messing up the build logs.

--- Makefile.maint      11 Feb 2006 00:42:27 -0000      1.22
+++ Makefile.maint      22 May 2006 07:41:15 -0000      1.23
@@ -25,9 +25,9 @@ ME := Makefile.maint
 
 # Do not save the original name or timestamp in the .tar.gz file.
 # Use --rsyncable if available.
-gzip_rsyncable := \
-  $(shell gzip --help|grep rsyncable >/dev/null && echo --rsyncable)
-GZIP_ENV = '--no-name --best $(gzip_rsyncable)'
+gzip_rsyncable = \
+  (gzip --help|grep rsyncable) >/dev/null 2>&1 && echo --rsyncable
+GZIP_ENV = "--no-name --best `$(gzip_rsyncable)`"
 
 CVS = cvs
 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]