diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2016-12-26 19:57:52 +0100 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2017-01-03 16:48:40 +0100 |
commit | 209ec69ab3cd81f1577c5af39f7b07a168cd28bc (patch) | |
tree | bb216cfe796d5dd4100e6ba13580074828253554 /arch/mips | |
parent | 08d90c81b714482dceb5323d14f6617bcf55ee61 (diff) | |
download | linux-stable-209ec69ab3cd81f1577c5af39f7b07a168cd28bc.tar.gz linux-stable-209ec69ab3cd81f1577c5af39f7b07a168cd28bc.tar.bz2 linux-stable-209ec69ab3cd81f1577c5af39f7b07a168cd28bc.zip |
MIPS: zboot: Consolidate compiler flag filtering.
Al Viro noticed that we were using two different methods to filter out
flags from KBUILD_CFLAGS.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Reported-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'arch/mips')
-rw-r--r-- | arch/mips/boot/compressed/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/boot/compressed/Makefile b/arch/mips/boot/compressed/Makefile index 41564a4db6f7..c675eece389a 100644 --- a/arch/mips/boot/compressed/Makefile +++ b/arch/mips/boot/compressed/Makefile @@ -18,7 +18,7 @@ include $(srctree)/arch/mips/Kbuild.platforms BOOT_HEAP_SIZE := 0x400000 # Disable Function Tracer -KBUILD_CFLAGS := $(shell echo $(KBUILD_CFLAGS) | sed -e "s/-pg//") +KBUILD_CFLAGS := $(filter-out -pg, $(KBUILD_CFLAGS)) KBUILD_CFLAGS := $(filter-out -fstack-protector, $(KBUILD_CFLAGS)) |