* [Qemu-devel] [BUG] Makefile.target: y != yes
@ 2009-07-14 18:47 RB
0 siblings, 0 replies; only message in thread
From: RB @ 2009-07-14 18:47 UTC (permalink / raw)
To: qemu-devel
[-- Attachment #1: Type: text/plain, Size: 206 bytes --]
There's a simple bug in Makefile.target introduced by commit eb9d73a;
configure and the Makefile disagree on the value of 'yes'. The
attached patch fixes it - please CC if needed since I'm not
subscribed.
[-- Attachment #2: qemu-yesfix.patch --]
[-- Type: application/octet-stream, Size: 561 bytes --]
diff --git a/Makefile.target b/Makefile.target
index 1a71f3a..a4cb506 100644
--- a/Makefile.target
+++ b/Makefile.target
@@ -89,7 +89,7 @@ translate.o: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-unit-at-a-tim
endif
ifeq ($(ARCH),sparc)
- ifneq ($(CONFIG_SOLARIS),yes)
+ ifneq ($(CONFIG_SOLARIS),y)
HELPER_CFLAGS+=-ffixed-i0
endif
endif
@@ -544,7 +544,7 @@ endif
# xen backend driver support
obj-$(CONFIG_XEN) += xen_machine_pv.o xen_domainbuild.o
-ifeq ($(CONFIG_XEN), yes)
+ifeq ($(CONFIG_XEN), y)
LIBS += $(XEN_LIBS)
endif
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-07-14 18:47 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-07-14 18:47 [Qemu-devel] [BUG] Makefile.target: y != yes RB
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).