Commit-ID: 33eecb68c2054ca1d8d66c848c114a01396cd796
Gitweb: http://repo.or.cz/w/nasm.git?a=commitdiff;h=33eecb68c2054ca1d8d66c848c114a01396cd796
Author: H. Peter Anvin <hp...@zy...>
AuthorDate: Thu, 24 Oct 2013 13:57:57 +0100
Committer: H. Peter Anvin <hp...@zy...>
CommitDate: Thu, 24 Oct 2013 13:57:57 +0100
Makefile.in: always run "make alldeps" when "make dist"
"make dist" (tarball generation) really should include "make alldeps"
so the Makefile dependencies are correct.
Signed-off-by: H. Peter Anvin <hp...@zy...>
---
Makefile.in | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/Makefile.in b/Makefile.in
index 60aa6bc..58d272c 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -254,7 +254,9 @@ everything: all doc rdf
install_everything: everything install install_doc install_rdf
-dist: spotless perlreq manpages spec
+dist:
+ $(MAKE) alldeps
+ $(MAKE) spotless perlreq manpages spec
autoheader
autoconf
$(RM) -rf ./autom4te*.cache
|