From: Tom Tromey Date: Thu, 4 Jan 1996 01:08:11 +0000 (+0000) Subject: Bug fix X-Git-Tag: Release-0-28~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3673440666cb48bf99d334823d9025085998a598;p=thirdparty%2Fautomake.git Bug fix --- diff --git a/ChangeLog b/ChangeLog index 389483e86..a54ba7d2e 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 391b26422..574c2bcbe 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 \