bug-gnu-utils
[Top][All Lists]
Advanced

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

gawk-3.0.95 fix for building with Solaris 7 awk


From: Paul Eggert
Subject: gawk-3.0.95 fix for building with Solaris 7 awk
Date: Mon, 26 Feb 2001 13:36:42 -0800 (PST)

A gawk 3.0.95 build failed on one of my Solaris 7 hosts because
stamp-eg uses awk, and Solaris 7 awk does not understand the
constructs being used.  Granted, this happened only because I edited
gawk.texi, but still it's a bit of an annoyance and is easily fixed.
Here is a patch.

2001-02-26  Paul Eggert  <address@hidden>

        * awklib/Makefile.am (stamp-eg): Use $(AWK), not awk, as the
        native awk might not work.

--- gawk-3.0.95/awklib/Makefile.am      Sun Jan 21 07:52:23 2001
+++ gawk-3.0.95-fix1/awklib/Makefile.am Mon Feb 26 13:30:07 2001
@@ -53,7 +53,7 @@
 
 stamp-eg: $(srcdir)/../doc/gawk.texi $(srcdir)/../doc/gawkinet.texi
        rm -fr eg stamp-eg
-       awk -f $(srcdir)/extract.awk $(srcdir)/../doc/gawk.texi 
$(srcdir)/../doc/gawkinet.texi
+       $(AWK) -f $(srcdir)/extract.awk $(srcdir)/../doc/gawk.texi 
$(srcdir)/../doc/gawkinet.texi
        @echo 'some makes are stupid and will not check a directory' > stamp-eg
        @echo 'against a file, so this file is a place holder. gack.' >> 
stamp-eg
 



reply via email to

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