summaryrefslogtreecommitdiffstats
path: root/Makefile.target
diff options
context:
space:
mode:
authorblueswir12008-05-10 14:27:33 +0200
committerblueswir12008-05-10 14:27:33 +0200
commitbf6247fb7639bc3492e769791f6569d65860029b (patch)
tree2f52acf52fb9a4c960ccf33d67f52fb75856af5f /Makefile.target
parentRemove duplicated field (diff)
downloadqemu-bf6247fb7639bc3492e769791f6569d65860029b.tar.gz
qemu-bf6247fb7639bc3492e769791f6569d65860029b.tar.xz
qemu-bf6247fb7639bc3492e769791f6569d65860029b.zip
Rename CONFIG_NO_DYNGEN_OP to CONFIG_DYNGEN_OP to avoid double negatives
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4412 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r--Makefile.target4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.target b/Makefile.target
index bb1f3e53c2..23134f5d66 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -185,7 +185,7 @@ all: $(PROGS)
# cpu emulator library
LIBOBJS=exec.o kqemu.o translate-all.o cpu-exec.o\
translate.o host-utils.o
-ifndef CONFIG_NO_DYNGEN_OP
+ifdef CONFIG_DYNGEN_OP
LIBOBJS+=op.o
endif
# TCG code generator
@@ -287,7 +287,7 @@ endif
# libqemu
-ifndef CONFIG_NO_DYNGEN_OP
+ifdef CONFIG_DYNGEN_OP
OPC_H = gen-op.h dyngen-opc.h op.h
endif