From 49f093a1073e10049cd19efc9d88a9855ef8014c Mon Sep 17 00:00:00 2001 From: Segher Boessenkool Date: Tue, 7 Nov 2006 12:46:21 +0000 Subject: [PATCH] kbuild: Fix Makefile syntax error Whitespace problems _can_ be harmful. Oh how we all love "make". Signed-off-by: Segher Boessenkool Acked-by: Ronald G. Minnich git-svn-id: svn://coreboot.org/repository/LinuxBIOSv3@35 f3766cd6-281f-0410-b1cd-43a5c92072e9 --- src/scripts/Makefile.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/Makefile.build b/src/scripts/Makefile.build index 3c6ff2e07a..b890bba9df 100644 --- a/src/scripts/Makefile.build +++ b/src/scripts/Makefile.build @@ -97,7 +97,7 @@ cmd_cc_o_c = $(CC) $(c_flags) -c -o $@ $< define rule_cc_o_c $(call echo-cmd,checksrc) $(cmd_checksrc) \ - $(call echo-cmd,cc_o_c) $(cmd_cc_o_c); \ \ + $(call echo-cmd,cc_o_c) $(cmd_cc_o_c); \ scripts/basic/fixdep $(depfile) $@ '$(call make-cmd,cc_o_c)' > $(@D)/.$(@F).tmp; \ rm -f $(depfile); \ mv -f $(@D)/.$(@F).tmp $(@D)/.$(@F).cmd