From 4320a4b916956f05dced61636133dd777ddc4928 Mon Sep 17 00:00:00 2001 From: Tom Tromey Date: Wed, 22 Nov 1995 07:22:56 +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 c9b74e02..ab3cded0 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 0872f5c7..f6886dcc 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.43.5