From patchwork Sun May 1 16:23:56 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?Andreas_F=C3=A4rber?= X-Patchwork-Id: 93560 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [140.186.70.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 52ED9B6F6B for ; Mon, 2 May 2011 02:24:30 +1000 (EST) Received: from localhost ([::1]:46612 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGZRa-0007R7-1R for incoming@patchwork.ozlabs.org; Sun, 01 May 2011 12:24:26 -0400 Received: from eggs.gnu.org ([140.186.70.92]:41788) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGZRN-0007Qy-IR for qemu-devel@nongnu.org; Sun, 01 May 2011 12:24:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QGZRL-0001H6-Rh for qemu-devel@nongnu.org; Sun, 01 May 2011 12:24:13 -0400 Received: from fmmailgate02.web.de ([217.72.192.227]:51758) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QGZRL-0001Gs-E5 for qemu-devel@nongnu.org; Sun, 01 May 2011 12:24:11 -0400 Received: from smtp05.web.de ( [172.20.4.166]) by fmmailgate02.web.de (Postfix) with ESMTP id 39AEF19E7DB57; Sun, 1 May 2011 18:23:58 +0200 (CEST) Received: from [84.148.30.203] (helo=af.local) by smtp05.web.de with asmtp (WEB.DE 4.110 #2) id 1QGZR7-0005tE-01; Sun, 01 May 2011 18:23:57 +0200 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Sun, 1 May 2011 18:23:56 +0200 Message-Id: <1304267036-28503-2-git-send-email-andreas.faerber@web.de> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <1304267036-28503-1-git-send-email-andreas.faerber@web.de> References: <1304267036-28503-1-git-send-email-andreas.faerber@web.de> MIME-Version: 1.0 X-Sender: Andreas.Faerber@web.de X-Provags-ID: V01U2FsdGVkX1/S5xI43TkXAouV1XrhMQF9qwJnjwNBNAdusee8 MTWmxjrzNsfmD7qmbidAeL0acnNf41mWO3QWx+P36ssoNOewFb dLmvUGcUKHXbzVOpkTYA== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 217.72.192.227 Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= , Alexander Graf , David Gibson Subject: [Qemu-devel] [PATCH 2/2] ppc64: Don't try to build sPAPR RTAS on Darwin X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org The Darwin assembler fails to build it. Cc: David Gibson Cc: Alexander Graf Signed-off-by: Andreas Färber --- configure | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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