]> sourceware.org Git - automake.git/commitdiff
Bug fix
authorTom Tromey <tromey@redhat.com>
Thu, 4 Jan 1996 01:08:10 +0000 (01:08 +0000)
committerTom Tromey <tromey@redhat.com>
Thu, 4 Jan 1996 01:08:10 +0000 (01:08 +0000)
ChangeLog
dist.am

index 389483e8677f5b40dc2fb5ac0fe03f7a5ab48063..a54ba7d2e7145eca30d78430aa4bb64c8ae17d1a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
 Wed Jan  3 00:05:40 1996  Tom Tromey  <tromey@cambric.colorado.edu>
 
+       * 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 391b264224264cbe1cf197ccbc2ac91886241cf4..574c2bcbeb8a572bc84cf94c93fc2d2400ee9045 100644 (file)
--- 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 \
This page took 0.034385 seconds and 5 git commands to generate.