diff mbox

[2/2] ppc64: Don't try to build sPAPR RTAS on Darwin

Message ID 1304267036-28503-2-git-send-email-andreas.faerber@web.de
State New
Headers show

Commit Message

Andreas Färber May 1, 2011, 4:23 p.m. UTC
The Darwin assembler fails to build it.

Cc: David Gibson <david@gibson.dropbear.id.au>
Cc: Alexander Graf <agraf@suse.de>
Signed-off-by: Andreas Färber <andreas.faerber@web.de>
---
 configure |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/configure b/configure
index 491f77a..1f2485a 100755
--- a/configure
+++ b/configure
@@ -2540,7 +2540,7 @@  if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) -a \
         "$softmmu" = yes ; then
   roms="optionrom"
 fi
-if test "$cpu" = "ppc64" ; then
+if test "$cpu" = "ppc64" -a "$targetos" != "Darwin" ; then
   roms="$roms spapr-rtas"
 fi