diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2014-10-17 09:59:33 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2014-10-17 09:59:33 +0300 |
commit | 98ba9765f8e6b0cd22e94e226a21a46b1b6eaf9b (patch) | |
tree | 510d52fb94360e2bca80b87f178e8e01e7b3b011 /awklib | |
parent | 74ee0dcab17240a1626b77ed998b07f0f6560a48 (diff) | |
download | egawk-98ba9765f8e6b0cd22e94e226a21a46b1b6eaf9b.tar.gz egawk-98ba9765f8e6b0cd22e94e226a21a46b1b6eaf9b.tar.bz2 egawk-98ba9765f8e6b0cd22e94e226a21a46b1b6eaf9b.zip |
Fix assumptions about AWKPATH in awklib and test.
Diffstat (limited to 'awklib')
-rw-r--r-- | awklib/ChangeLog | 5 | ||||
-rw-r--r-- | awklib/Makefile.am | 2 | ||||
-rw-r--r-- | awklib/Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
diff --git a/awklib/ChangeLog b/awklib/ChangeLog index 6ef0bbde..13d6b090 100644 --- a/awklib/ChangeLog +++ b/awklib/ChangeLog @@ -1,3 +1,8 @@ +2014-10-17 Andrew J. Schorr <aschorr@telemetry-investments.com> + + * Makefile.am (stamp-eg): Use explicit ./extract.awk to avoid + assumptions about AWKPATH in the environment. + 2014-04-08 Arnold D. Robbins <arnold@skeeve.com> * 4.1.1: Release tar ball made. diff --git a/awklib/Makefile.am b/awklib/Makefile.am index 6ffbea81..82b7e07f 100644 --- a/awklib/Makefile.am +++ b/awklib/Makefile.am @@ -68,7 +68,7 @@ $(srcdir)/stamp-eg: $(srcdir)/../doc/gawk.texi $(srcdir)/../doc/gawkinet.texi cd $(srcdir) && \ rm -fr eg && \ rm -fr stamp-eg && \ - $(AWKPROG) -f extract.awk ../doc/gawk.texi ../doc/gawkinet.texi + $(AWKPROG) -f ./extract.awk ../doc/gawk.texi ../doc/gawkinet.texi @echo 'some makes are stupid and will not check a directory' > $(srcdir)/stamp-eg @echo 'against a file, so this file is a place holder. gack.' >> $(srcdir)/stamp-eg diff --git a/awklib/Makefile.in b/awklib/Makefile.in index d32ae04a..4c9a0552 100644 --- a/awklib/Makefile.in +++ b/awklib/Makefile.in @@ -721,7 +721,7 @@ $(srcdir)/stamp-eg: $(srcdir)/../doc/gawk.texi $(srcdir)/../doc/gawkinet.texi cd $(srcdir) && \ rm -fr eg && \ rm -fr stamp-eg && \ - $(AWKPROG) -f extract.awk ../doc/gawk.texi ../doc/gawkinet.texi + $(AWKPROG) -f ./extract.awk ../doc/gawk.texi ../doc/gawkinet.texi @echo 'some makes are stupid and will not check a directory' > $(srcdir)/stamp-eg @echo 'against a file, so this file is a place holder. gack.' >> $(srcdir)/stamp-eg |