[syslinux:master] Partial Revert: Still use .*.d deps

syslinux-bot for Gene Cumm gene.cumm at gmail.com
Thu Dec 10 12:39:03 PST 2015


Commit-ID:  721a0af2f0ba111c31685c5f6c5481eb25346971
Gitweb:     http://www.syslinux.org/commit/721a0af2f0ba111c31685c5f6c5481eb25346971
Author:     Gene Cumm <gene.cumm at gmail.com>
AuthorDate: Thu, 10 Dec 2015 14:49:41 -0500
Committer:  Gene Cumm <gene.cumm at gmail.com>
CommitDate: Thu, 10 Dec 2015 14:49:41 -0500

Partial Revert: Still use .*.d deps

Previous commit changed the dependency filenames to not have a leading '.'

Signed-off-by: Gene Cumm <gene.cumm at gmail.com>

---
 mk/syslinux.mk | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/mk/syslinux.mk b/mk/syslinux.mk
index 9ca74b1..46355c9 100644
--- a/mk/syslinux.mk
+++ b/mk/syslinux.mk
@@ -82,11 +82,11 @@ ARCH ?= $(strip $(SUBARCH))
 GCCWARN  = -W -Wall -Wstrict-prototypes $(DEBUGOPT)
 
 # Common stanza to make gcc generate .*.d dependency files
-MAKEDEPS = -MT $@ -MD
+MAKEDEPS = -MT $@ -MD -MF $(dir $@).$(notdir $@).d
 
 # Dependencies that exclude system headers; use whenever we use
 # header files from the platform.
-UMAKEDEPS = -MT $@ -MMD
+UMAKEDEPS = -MT $@ -MMD -MF $(dir $@).$(notdir $@).d
 
 # Items that are only appropriate during development; this file is
 # removed when tarballs are generated.


More information about the Syslinux-commits mailing list