diff options
-rwxr-xr-x | ChangeLog | 6 | ||||
-rw-r--r-- | Makefile.am | 1 | ||||
-rw-r--r-- | Makefile.in | 1 |
3 files changed, 8 insertions, 0 deletions
@@ -1,3 +1,9 @@ +2019-03-01 Arnold D. Robbins <arnold@skeeve.com> + + * Makefile.am (pc/Makefile.tst): Make sure pc/ directory exists + first. Neede for `make distcheck'. Not sure what changed such + that this is only showing up now. + 2019-02-28 Arnold D. Robbins <arnold@skeeve.com> * README.cvs: Removed. Six years is long enough. diff --git a/Makefile.am b/Makefile.am index bf924ed7..17b6eaae 100644 --- a/Makefile.am +++ b/Makefile.am @@ -193,6 +193,7 @@ command.c: command.y sed 's/parse error/syntax error/g' < $@ > $@.tmp && mv $@.tmp $@ 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 diff --git a/Makefile.in b/Makefile.in index d900c673..089b57c1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1270,6 +1270,7 @@ command.c: command.y sed 's/parse error/syntax error/g' < $@ > $@.tmp && mv $@.tmp $@ 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 |