qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: RB <aoz.syn@gmail.com>
To: qemu-devel@nongnu.org
Subject: [Qemu-devel] [BUG] Makefile.target: y != yes
Date: Tue, 14 Jul 2009 12:47:48 -0600	[thread overview]
Message-ID: <4255c2570907141147y39730eefn13a738f479ac6aea@mail.gmail.com> (raw)

[-- 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
 

                 reply	other threads:[~2009-07-14 18:47 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4255c2570907141147y39730eefn13a738f479ac6aea@mail.gmail.com \
    --to=aoz.syn@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).