From: Tom Tromey Date: Sun, 12 Nov 1995 18:49:38 +0000 (+0000) Subject: Changed to conform to new top-level dist target. X-Git-Tag: Release-0-25~395 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=799ca1c40bbb5ee6d084d7ae703e12a6a4637176;p=thirdparty%2Fautomake.git Changed to conform to new top-level dist target. --- diff --git a/dist-subd.am b/dist-subd.am index 34c4c2c1e..99b67101e 100644 --- a/dist-subd.am +++ b/dist-subd.am @@ -1,8 +1,8 @@ +distdir = $(PACKAGE)-$(VERSION)/$(subdir) dist: $(DIST_FILES) $(DIST_DIRS) - -mkdir ../`cat ../distname`/$(subdir) @for file in $(DIST_FILES); do \ echo linking $$file; \ - ln $(srcdir)/$$file ../`cat ../distname`/$(subdir)/$$file || \ - { echo copying $$file instead; cp -p $(srcdir)/$$file ../`cat ../distname`/$(subdir)/$$file;}; \ + ln $(srcdir)/$$file $(distdir)/$$file || \ + { echo copying $$file instead; cp -p $(srcdir)/$$file $(distdir)/$$file;}; \ done