From patchwork Fri Jan 4 08:10:06 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 209379 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [208.118.235.17]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 9D2392C0086 for ; Fri, 4 Jan 2013 19:25:22 +1100 (EST) Received: from localhost ([::1]:44139 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr2ae-0004CP-47 for incoming@patchwork.ozlabs.org; Fri, 04 Jan 2013 03:25:20 -0500 Received: from eggs.gnu.org ([208.118.235.92]:33202) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr2aX-0004C6-I0 for qemu-devel@nongnu.org; Fri, 04 Jan 2013 03:25:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Tr2aU-0008M9-7c for qemu-devel@nongnu.org; Fri, 04 Jan 2013 03:25:13 -0500 Received: from mx1.redhat.com ([209.132.183.28]:24158) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Tr2MV-0003Oc-75 for qemu-devel@nongnu.org; Fri, 04 Jan 2013 03:10:43 -0500 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r048Abv0032630 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 4 Jan 2013 03:10:38 -0500 Received: from rincewind.home.kraxel.org (ovpn-116-25.ams2.redhat.com [10.36.116.25]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id r048AAS3026999; Fri, 4 Jan 2013 03:10:23 -0500 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 08A6C40961; Fri, 4 Jan 2013 09:10:09 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Fri, 4 Jan 2013 09:10:06 +0100 Message-Id: <1357287009-22604-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1357287009-22604-1-git-send-email-kraxel@redhat.com> References: <1357287009-22604-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 209.132.183.28 Cc: Gerd Hoffmann Subject: [Qemu-devel] [PATCH 1/4] configure: also symlink *.aml files 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 Signed-off-by: Gerd Hoffmann --- configure | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/configure b/configure index 9538041..1e9fd86 100755 --- a/configure +++ b/configure @@ -4240,6 +4240,7 @@ 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/*.aml \ $source_path/pc-bios/*.rom \ $source_path/pc-bios/*.dtb \ $source_path/pc-bios/openbios-* \