From: Joshua Oreman Date: Thu, 15 Oct 2009 18:07:20 +0000 (-0400) Subject: [build] Fix DEBUG builds for filenames with hyphens X-Git-Tag: v0.9.9~14 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3fa277920804b056ce72fd9ba0074a7ff7c871fa;p=thirdparty%2Fipxe.git [build] Fix DEBUG builds for filenames with hyphens Debug builds for filenames with hyphens such as: $ make bin/via-rhine.dsk DEBUG=via-rhine fail with: [BUILD] bin/via-rhine.dbg1.o : error: missing whitespace after the macro name make: *** [bin/via-rhine.dbg1.o] Error 1 This is because "-" is not a legal character in C identifiers, and gcc rejects "-Ddebug_via-rhine=1" as an argument. Signed-off-by: Daniel Verkamp Signed-off-by: Joshua Oreman Signed-off-by: Marty Connor --- diff --git a/src/Makefile.housekeeping b/src/Makefile.housekeeping index df2a6201a..e83a3e522 100644 --- a/src/Makefile.housekeeping +++ b/src/Makefile.housekeeping @@ -410,7 +410,7 @@ endif # COMPILE_c = $(CC) $(CFLAGS) $(CFLAGS_c) $(OBJ_CFLAGS) RULE_c = $(Q)$(COMPILE_c) -c $< -o $@ $(POST_O) -RULE_c_to_dbg%.o = $(Q)$(COMPILE_c) -Ddebug_$(OBJECT)=$* -c $< -o $@ $(POST_O) +RULE_c_to_dbg%.o = $(Q)$(COMPILE_c) -Ddebug_$(subst -,_,$(OBJECT))=$* -c $< -o $@ $(POST_O) RULE_c_to_c = $(Q)$(COMPILE_c) -E -c $< > $@ RULE_c_to_s = $(Q)$(COMPILE_c) -S -g0 -c $< -o $@