summaryrefslogtreecommitdiff
path: root/target-ppc/Makefile.objs
diff options
context:
space:
mode:
authorÁkos Kovács <akoskovacs@gmx.com>2013-09-13 18:25:53 +0100
committerPaolo Bonzini <pbonzini@redhat.com>2013-10-16 18:21:00 +0200
commitcf01ba9eef81d828c8292eacab70c67c81ca4501 (patch)
tree71800ad29ab692fbf5636c1f1abfcbac4985a809 /target-ppc/Makefile.objs
parent9ef622e31e7168a9a2c80f95d245c2ad156e3fa7 (diff)
downloadqemu-cf01ba9eef81d828c8292eacab70c67c81ca4501.tar.gz
Makefile.target: CONFIG_NO_* variables removed
CONFIG_NO_* variables replaced with the lnot logical function Signed-off-by: Ákos Kovács <akoskovacs@gmx.com> [PMM: fixed a few CONFIG_NO_* uses that were missed] Signed-off-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'target-ppc/Makefile.objs')
-rw-r--r--target-ppc/Makefile.objs2
1 files changed, 1 insertions, 1 deletions
diff --git a/target-ppc/Makefile.objs b/target-ppc/Makefile.objs
index f72e3993f7..94d6d0c43b 100644
--- a/target-ppc/Makefile.objs
+++ b/target-ppc/Makefile.objs
@@ -5,7 +5,7 @@ obj-y += machine.o mmu_helper.o mmu-hash32.o
obj-$(TARGET_PPC64) += mmu-hash64.o
endif
obj-$(CONFIG_KVM) += kvm.o kvm_ppc.o
-obj-$(CONFIG_NO_KVM) += kvm-stub.o
+obj-$(call lnot,$(CONFIG_KVM)) += kvm-stub.o
obj-y += excp_helper.o
obj-y += fpu_helper.o
obj-y += int_helper.o