diff options
author | matt mooney <mfm@muteddisk.com> | 2010-09-22 20:51:09 +0000 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2010-10-13 16:19:22 +1100 |
commit | 4108d9ba9091c55cfb968d42dd7dcae9a098b876 (patch) | |
tree | 881cc06df6f7b2a15fd1db49c02641bd41a314d6 /arch/powerpc/oprofile | |
parent | fc15351d9d63a35fd00c15850fa93a27940f16a0 (diff) | |
download | op-kernel-dev-4108d9ba9091c55cfb968d42dd7dcae9a098b876.zip op-kernel-dev-4108d9ba9091c55cfb968d42dd7dcae9a098b876.tar.gz |
powerpc/Makefiles: Change to new flag variables
Replace EXTRA_CFLAGS with ccflags-y and EXTRA_AFLAGS with asflags-y.
Signed-off-by: matt mooney <mfm@muteddisk.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/oprofile')
-rw-r--r-- | arch/powerpc/oprofile/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/arch/powerpc/oprofile/Makefile b/arch/powerpc/oprofile/Makefile index e219ca4..73456c4 100644 --- a/arch/powerpc/oprofile/Makefile +++ b/arch/powerpc/oprofile/Makefile @@ -1,8 +1,6 @@ subdir-ccflags-$(CONFIG_PPC_WERROR) := -Werror -ifeq ($(CONFIG_PPC64),y) -EXTRA_CFLAGS += -mno-minimal-toc -endif +ccflags-$(CONFIG_PPC64) := -mno-minimal-toc obj-$(CONFIG_OPROFILE) += oprofile.o |