diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2019-03-15 10:21:52 +0200 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2019-03-15 10:21:52 +0200 |
commit | 72b5775d2ea0ec8d5f9ef0d61adef7613a0a9dd1 (patch) | |
tree | 76ca7be675ee21d7e1bab1b72540fbd711188a1b | |
parent | 9b5393eb929ba191a5168dd52ee3afbe9a9917a0 (diff) | |
download | egawk-72b5775d2ea0ec8d5f9ef0d61adef7613a0a9dd1.tar.gz egawk-72b5775d2ea0ec8d5f9ef0d61adef7613a0a9dd1.tar.bz2 egawk-72b5775d2ea0ec8d5f9ef0d61adef7613a0a9dd1.zip |
Another fix for 'make distcheck' to work.
-rwxr-xr-x | ChangeLog | 5 | ||||
-rw-r--r-- | Makefile.am | 2 | ||||
-rw-r--r-- | Makefile.in | 2 |
3 files changed, 7 insertions, 2 deletions
@@ -1,3 +1,8 @@ +2019-03-15 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (pc/Makefile.tst): Yet another fix for out- + of-tree builds. Thanks to `make distcheck'. + 2019-03-03 Arnold D. Robbins <arnold@skeeve.com> * main.c (usage): Fix help message. diff --git a/Makefile.am b/Makefile.am index 17b6eaae..d544b1cc 100644 --- a/Makefile.am +++ b/Makefile.am @@ -195,7 +195,7 @@ command.c: command.y pc/Makefile.tst: test/Makefile.in test -d pc || mkdir pc cat "$(top_srcdir)"/pc/Makefile.tst.prologue > pc/Makefile.tst - awk -f "$(top_srcdir)"/pc/GenMakefileTst.awk test/Makefile.in >> pc/Makefile.tst + awk -f "$(top_srcdir)"/pc/GenMakefileTst.awk "$(top_srcdir)"/test/Makefile.in >> pc/Makefile.tst # This is for my development & testing. efence: gawk diff --git a/Makefile.in b/Makefile.in index 089b57c1..b8b0b441 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1272,7 +1272,7 @@ command.c: command.y pc/Makefile.tst: test/Makefile.in test -d pc || mkdir pc cat "$(top_srcdir)"/pc/Makefile.tst.prologue > pc/Makefile.tst - awk -f "$(top_srcdir)"/pc/GenMakefileTst.awk test/Makefile.in >> pc/Makefile.tst + awk -f "$(top_srcdir)"/pc/GenMakefileTst.awk "$(top_srcdir)"/test/Makefile.in >> pc/Makefile.tst # This is for my development & testing. efence: gawk |