From bf1c24ae903058aaaf440844e481fc5c9aaf20c2 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 22 Nov 1995 07:23:10 +0000 Subject: [PATCH] (dist): Run `automake --include-deps' before making distribution --- dist-subd-top.am | 1 + dist.am | 1 + 2 files changed, 2 insertions(+) diff --git a/dist-subd-top.am b/dist-subd-top.am index c9b74e0..ab3cded 100644 --- a/dist-subd-top.am +++ b/dist-subd-top.am @@ -2,6 +2,7 @@ distdir = $(PACKAGE)-$(VERSION) dist: $(DIST_FILES) rm -rf $(distdir) mkdir $(distdir) + (cd $(srcdir); automake --include-deps) @for file in $(DIST_FILES); do \ test -f $(distdir)/$$file || { \ echo linking $$file; \ diff --git a/dist.am b/dist.am index 0872f5c..f6886dc 100644 --- a/dist.am +++ b/dist.am @@ -2,6 +2,7 @@ distdir = $(PACKAGE)-$(VERSION) dist: $(DIST_FILES) rm -rf $(distdir) mkdir $(distdir) + (cd $(srcdir); automake --include-deps) @for file in $(DIST_FILES); do \ test -f $(distdir)/$$file || { \ echo linking $$file; \ -- 2.7.4