From patchwork Wed Dec 12 09:15:38 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gerd Hoffmann X-Patchwork-Id: 205470 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 6222E2C00AC for ; Wed, 12 Dec 2012 20:35:48 +1100 (EST) Received: from localhost ([::1]:37888 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TiiQV-0005wD-2Z for incoming@patchwork.ozlabs.org; Wed, 12 Dec 2012 04:16:27 -0500 Received: from eggs.gnu.org ([208.118.235.92]:42046) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TiiQ0-00053Y-4l for qemu-devel@nongnu.org; Wed, 12 Dec 2012 04:16:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TiiPq-0001lj-IQ for qemu-devel@nongnu.org; Wed, 12 Dec 2012 04:15:56 -0500 Received: from mx1.redhat.com ([209.132.183.28]:28394) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TiiPq-0001kX-9Q for qemu-devel@nongnu.org; Wed, 12 Dec 2012 04:15:46 -0500 Received: from int-mx01.intmail.prod.int.phx2.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id qBC9FikR020301 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 12 Dec 2012 04:15:45 -0500 Received: from rincewind.home.kraxel.org (ovpn-116-33.ams2.redhat.com [10.36.116.33]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id qBC9FhPA010993; Wed, 12 Dec 2012 04:15:44 -0500 Received: by rincewind.home.kraxel.org (Postfix, from userid 500) id 1CD0C41DD2; Wed, 12 Dec 2012 10:15:43 +0100 (CET) From: Gerd Hoffmann To: qemu-devel@nongnu.org Date: Wed, 12 Dec 2012 10:15:38 +0100 Message-Id: <1355303742-3263-2-git-send-email-kraxel@redhat.com> In-Reply-To: <1355303742-3263-1-git-send-email-kraxel@redhat.com> References: <1355303742-3263-1-git-send-email-kraxel@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 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/5] 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 38b1cc6..d35563c 100755 --- a/configure +++ b/configure @@ -4197,6 +4197,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-* \