From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:51642) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VwCKg-0004LJ-PG for qemu-devel@nongnu.org; Thu, 26 Dec 2013 09:54:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VwCKZ-0004yt-EJ for qemu-devel@nongnu.org; Thu, 26 Dec 2013 09:54:42 -0500 Received: from mx1.redhat.com ([209.132.183.28]:57730) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VwCKZ-0004yh-73 for qemu-devel@nongnu.org; Thu, 26 Dec 2013 09:54:35 -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 rBQEsYLr031172 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Thu, 26 Dec 2013 09:54:34 -0500 From: Marcel Apfelbaum Date: Thu, 26 Dec 2013 16:54:20 +0200 Message-Id: <1388069665-1955-3-git-send-email-marcel.a@redhat.com> In-Reply-To: <1388069665-1955-1-git-send-email-marcel.a@redhat.com> References: <1388069665-1955-1-git-send-email-marcel.a@redhat.com> Subject: [Qemu-devel] [PATCH resend 2/7] 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 07b6be3..53a1392 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