[Nasm-commits] [nasm:nasm-2.15.xx] Makefile.in: always_everything needs to depend on dirs

nasm-bot for H. Peter Anvin (Intel) hpa at zytor.com
Thu Jun 4 19:57:12 PDT 2020


Commit-ID:  295b64541c3921b94283018961443043b38cd66c
Gitweb:     http://repo.or.cz/w/nasm.git?a=commitdiff;h=295b64541c3921b94283018961443043b38cd66c
Author:     H. Peter Anvin (Intel) <hpa at zytor.com>
AuthorDate: Thu, 4 Jun 2020 18:59:25 -0700
Committer:  H. Peter Anvin (Intel) <hpa at zytor.com>
CommitDate: Thu, 4 Jun 2020 18:59:25 -0700

Makefile.in: always_everything needs to depend on dirs

If the directories don't exist, we could get serious weirdness.

Signed-off-by: H. Peter Anvin (Intel) <hpa at zytor.com>


---
 Makefile.in | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/Makefile.in b/Makefile.in
index 98ac0824..dbf8c6e3 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -445,7 +445,8 @@ doc_install install_doc:
 # Dummy target to prevent accidental invocation of the default "all" target
 nothing:
 
-always_everything: all doc rdf
+always_everything: dirs
+	$(MAKE) all doc
 
 everything: always_everything
 	$(MAKE) $(MANPAGES) $(NSIS) nothing


More information about the Nasm-commits mailing list