From patchwork Sun May 8 11:25: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: 94551 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 73B75B715D for ; Sun, 8 May 2011 21:26:47 +1000 (EST) Received: from localhost ([::1]:57768 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJ28J-0000VO-8w for incoming@patchwork.ozlabs.org; Sun, 08 May 2011 07:26:43 -0400 Received: from eggs.gnu.org ([140.186.70.92]:47854) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJ28A-0000V8-Dd for qemu-devel@nongnu.org; Sun, 08 May 2011 07:26:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1QJ289-00070I-Fr for qemu-devel@nongnu.org; Sun, 08 May 2011 07:26:34 -0400 Received: from fmmailgate03.web.de ([217.72.192.234]:59249) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1QJ289-000707-9O for qemu-devel@nongnu.org; Sun, 08 May 2011 07:26:33 -0400 Received: from smtp06.web.de ( [172.20.5.172]) by fmmailgate03.web.de (Postfix) with ESMTP id DDBB918E3014C; Sun, 8 May 2011 13:25:58 +0200 (CEST) Received: from [87.173.118.205] (helo=af.local) by smtp06.web.de with asmtp (WEB.DE 4.110 #2) id 1QJ27a-0000Bg-00; Sun, 08 May 2011 13:25:58 +0200 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= To: qemu-devel@nongnu.org Date: Sun, 8 May 2011 13:25:56 +0200 Message-Id: <1304853957-8244-1-git-send-email-andreas.faerber@web.de> X-Mailer: git-send-email 1.7.3.4 In-Reply-To: <20110502010910.GA31815@yookeroo> References: <20110502010910.GA31815@yookeroo> MIME-Version: 1.0 X-Sender: Andreas.Faerber@web.de X-Provags-ID: V01U2FsdGVkX1+AuOjGxBov3ElSdaJ+Ex+MD1aUdGz5DNCw0CM0 3I3eVIdYKb1TW88oy0yKlGeWLxGorx3cR1sCMeSchK5CezaT8Y Xio8SAXl/OVuvkdN3FqQ== X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4-2.6 X-Received-From: 217.72.192.234 Cc: =?UTF-8?q?Andreas=20F=C3=A4rber?= , Alexander Graf , David Gibson Subject: [Qemu-devel] [PATCH v2 1/2] ppc64: Fix out-of-tree builds 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 On ppc64 host, recursion into pc-bios/spapr-rtas/ fails for out-of-tree builds. Add missing dir and symlink. Cc: David Gibson Cc: Alexander Graf Signed-off-by: Andreas Färber --- v2: * Don't discard previous $DIRS, it would break a fresh build. Spotted by David Gibson. configure | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 6f75e2e..9244260 100755 --- a/configure +++ b/configure @@ -3457,11 +3457,13 @@ done # for target in $targets # build tree in object directory in case the source is not in the current directory DIRS="tests tests/cris slirp audio block net pc-bios/optionrom" +DIRS="$DIRS pc-bios/spapr-rtas" DIRS="$DIRS roms/seabios roms/vgabios" DIRS="$DIRS fsdev ui" FILES="Makefile tests/Makefile" FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit" FILES="$FILES pc-bios/optionrom/Makefile pc-bios/keymaps" +FILES="$FILES pc-bios/spapr-rtas/Makefile" FILES="$FILES roms/seabios/Makefile roms/vgabios/Makefile" for bios_file in $source_path/pc-bios/*.bin $source_path/pc-bios/*.rom $source_path/pc-bios/*.dtb $source_path/pc-bios/openbios-*; do FILES="$FILES pc-bios/`basename $bios_file`"