diff options
author | Liu Yu <yu.liu@freescale.com> | 2009-03-10 11:09:49 +0800 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2009-03-11 06:00:08 -0500 |
commit | 1a3d1fc2273c6736ad2d19058e0413bc830c5e4d (patch) | |
tree | e1a1c0366a51b511d0b496cf22f38de86697734a /arch/powerpc/Makefile | |
parent | 2b881b940a7b0cdf7c8258c9869458aa4e5f830c (diff) | |
download | blackbird-op-linux-1a3d1fc2273c6736ad2d19058e0413bc830c5e4d.tar.gz blackbird-op-linux-1a3d1fc2273c6736ad2d19058e0413bc830c5e4d.zip |
powerpc/math-emu: Fix efp dependence
There is no dependece between efp and math-emu. But when disable math-emu
the efp code cannot be built.
Signed-off-by: Liu Yu <yu.liu@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/Makefile')
-rw-r--r-- | arch/powerpc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/Makefile b/arch/powerpc/Makefile index 72d17f50e54f..551fc58c05cf 100644 --- a/arch/powerpc/Makefile +++ b/arch/powerpc/Makefile @@ -147,8 +147,8 @@ core-y += arch/powerpc/kernel/ \ arch/powerpc/mm/ \ arch/powerpc/lib/ \ arch/powerpc/sysdev/ \ - arch/powerpc/platforms/ -core-$(CONFIG_MATH_EMULATION) += arch/powerpc/math-emu/ + arch/powerpc/platforms/ \ + arch/powerpc/math-emu/ core-$(CONFIG_XMON) += arch/powerpc/xmon/ core-$(CONFIG_KVM) += arch/powerpc/kvm/ |