From: Tom Tromey Date: Thu, 4 Jan 1996 01:08:10 +0000 (+0000) Subject: Bug fix X-Git-Tag: Release-0-28~18 X-Git-Url: https://sourceware.org/git/?a=commitdiff_plain;h=9d5641d7e2264be983e0ac902152b0be11e2afaa;p=automake.git Bug fix --- diff --git a/ChangeLog b/ChangeLog index 389483e8..a54ba7d2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ Wed Jan 3 00:05:40 1996 Tom Tromey + * dist.am (dist): Changed in parallel with dist-subd-top.am. + * mkinstalldirs: Reverted. * automake.in (initialize_global_constants): Allow COPYING.LIB diff --git a/dist.am b/dist.am index 391b2642..574c2bcb 100644 --- a/dist.am +++ b/dist.am @@ -3,7 +3,9 @@ distdir = $(PACKAGE)-$(VERSION) dist: $(DISTFILES) rm -rf $(distdir) mkdir $(distdir) - (cd $(srcdir) && automake --include-deps --output-dir=$(distdir)) + distdir=`cd $(distdir) && pwd` \ + && cd $(srcdir) \ + && automake --include-deps --output-dir=$$distdir @for file in $(DISTFILES); do \ test -f $(distdir)/$$file \ || ln $(srcdir)/$$file $(distdir)/$$file \