From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38898) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vv2WE-0003og-9o for qemu-devel@nongnu.org; Mon, 23 Dec 2013 05:13:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Vv2W5-0001Ut-TA for qemu-devel@nongnu.org; Mon, 23 Dec 2013 05:13:50 -0500 Received: from mx1.redhat.com ([209.132.183.28]:26076) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Vv2W5-0001Un-LO for qemu-devel@nongnu.org; Mon, 23 Dec 2013 05:13:41 -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 rBNADfPW006872 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 23 Dec 2013 05:13:41 -0500 From: Marcel Apfelbaum Date: Mon, 23 Dec 2013 12:13:25 +0200 Message-Id: <1387793606-4761-3-git-send-email-marcel.a@redhat.com> In-Reply-To: <1387793606-4761-1-git-send-email-marcel.a@redhat.com> References: <1387793606-4761-1-git-send-email-marcel.a@redhat.com> Subject: [Qemu-devel] [PATCH v2 2/3] configure: added acpi unit-test files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: mst@redhat.com Ensure configure will set-up links for the files if the build is created in other directory. Signed-off-by: Marcel Apfelbaum --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index edfea95..c30be12 100755 --- a/configure +++ b/configure @@ -4744,6 +4744,10 @@ for bios_file in \ do FILES="$FILES pc-bios/`basename $bios_file`" done +for test_file in `find $source_path/tests/acpi-test-data -type f` +do + FILES="$FILES tests/acpi-test-data`echo $test_file | sed -e 's/.*acpi-test-data//'`" +done mkdir -p $DIRS for f in $FILES ; do if [ -e "$source_path/$f" ] && [ "$source_path" != `pwd` ]; then -- 1.8.3.1