aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOzan Çağlayan2012-08-14 11:00:54 -0500
committerMichal Marek2012-08-31 09:03:16 -0500
commit70cfe02682ff16bd8c1fec0d2374bd4dbceae54f (patch)
tree5e9979b4810281f0720f64ab5155180de5aca6fd /Makefile
parent0d7614f09c1ebdbaa1599a5aba7593f147bf96ee (diff)
downloadkernel-omap-70cfe02682ff16bd8c1fec0d2374bd4dbceae54f.tar.gz
kernel-omap-70cfe02682ff16bd8c1fec0d2374bd4dbceae54f.tar.xz
kernel-omap-70cfe02682ff16bd8c1fec0d2374bd4dbceae54f.zip
kbuild: Remove useless warning while appending KCFLAGS
This is a respin of an older patch sent by Sam Ravnborg: http://www.gossamer-threads.com/lists/linux/kernel/1530602 This patch removes the annoying warning: Makefile:708: "WARNING: Appending $KCFLAGS (-Wno-sign-compare) from command line to kernel $CFLAGS" which is printed every time I use KCFLAFS. The commit which introduced the warning: 69ee0b3 kbuild: do not pick up CFLAGS from the environment tells about the problems when people have CFLAGS in their environment, then switches to KCFLAFS which should be enough to solve the issue, but it anyway introduces a warning. Drop this warning. Signed-off-by: Ozan Çağlayan <ozancag@gmail.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 3 insertions, 16 deletions
diff --git a/Makefile b/Makefile
index ddf5be952e45..fe8ab312402f 100644
--- a/Makefile
+++ b/Makefile
@@ -648,22 +648,9 @@ ifeq ($(shell $(CONFIG_SHELL) $(srctree)/scripts/gcc-goto.sh $(CC)), y)
648endif 648endif
649 649
650# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments 650# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments
651# But warn user when we do so 651KBUILD_CPPFLAGS += $(KCPPFLAGS)
652warn-assign = \ 652KBUILD_AFLAGS += $(KAFLAGS)
653$(warning "WARNING: Appending $$K$(1) ($(K$(1))) from $(origin K$(1)) to kernel $$$(1)") 653KBUILD_CFLAGS += $(KCFLAGS)
654
655ifneq ($(KCPPFLAGS),)
656 $(call warn-assign,CPPFLAGS)
657 KBUILD_CPPFLAGS += $(KCPPFLAGS)
658endif
659ifneq ($(KAFLAGS),)
660 $(call warn-assign,AFLAGS)
661 KBUILD_AFLAGS += $(KAFLAGS)
662endif
663ifneq ($(KCFLAGS),)
664 $(call warn-assign,CFLAGS)
665 KBUILD_CFLAGS += $(KCFLAGS)
666endif
667 654
668# Use --build-id when available. 655# Use --build-id when available.
669LDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\ 656LDFLAGS_BUILD_ID = $(patsubst -Wl$(comma)%,%,\