From cd783bf3545065a1a87f7a1c844376ebe0d7907c Mon Sep 17 00:00:00 2001 From: Peter Verthez Date: Mon, 31 Dec 2001 16:07:34 +0000 Subject: [PATCH] Bugfixes for make distcheck. --- doc/Makefile.am | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index bf5b210..550b6bf 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -6,9 +6,10 @@ EXTRA_DIST = index.html usage.html parser.html interface.html links.html VERSIONED_FILES = index.html dist-hook: - @cd $(distdir); \ - mkdir images - cp -p $(srcdir)/images/schema.obj $(srcdir)/images/schema.png images \ + mkdir -p $(distdir)/images; + cp -p $(srcdir)/images/schema.obj $(srcdir)/images/schema.png \ + $(distdir)/images; + cd $(distdir); \ for file in $(VERSIONED_FILES); do \ sed 's/\@VERSION\@/${VERSION}/' $$file > $$file.new; \ rm $$file; \ -- 2.30.2