diff options
-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 |