diff options
author | Mike Frysinger <vapier@gentoo.org> | 2009-06-04 19:29:08 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-04 21:07:40 -0400 |
commit | 08f67461c609ad96bf26732b590569e02e322019 (patch) | |
tree | ffa72aebfc826a9e0fd62d05188c83360949274f | |
parent | 087eb437051b3de817720f9c80c440fc9e7dcce8 (diff) |
kbuild: fix detection of CONFIG_FRAME_WARN=0
The checking of CONFIG_FRAME_WARN in the top level Makefile forgot to
actually derefence the variable thus leading to an always true check.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Cc: Andi Kleen <ak@suse.de>
Cc: Sam Ravnborg <sam@ravnborg.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -533,7 +533,7 @@ endif | |||
533 | 533 | ||
534 | include $(srctree)/arch/$(SRCARCH)/Makefile | 534 | include $(srctree)/arch/$(SRCARCH)/Makefile |
535 | 535 | ||
536 | ifneq (CONFIG_FRAME_WARN,0) | 536 | ifneq ($(CONFIG_FRAME_WARN),0) |
537 | KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN}) | 537 | KBUILD_CFLAGS += $(call cc-option,-Wframe-larger-than=${CONFIG_FRAME_WARN}) |
538 | endif | 538 | endif |
539 | 539 | ||