From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43618) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W5FTO-0005VL-Cc for qemu-devel@nongnu.org; Mon, 20 Jan 2014 09:05:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W5FTI-00013H-AI for qemu-devel@nongnu.org; Mon, 20 Jan 2014 09:05:06 -0500 Received: from mx1.redhat.com ([209.132.183.28]:8807) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W5FTI-00013C-2O for qemu-devel@nongnu.org; Mon, 20 Jan 2014 09:05:00 -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 s0KE4xVt025894 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 20 Jan 2014 09:04:59 -0500 Date: Mon, 20 Jan 2014 16:09:44 +0200 From: "Michael S. Tsirkin" Message-ID: <1390226872-781-7-git-send-email-mst@redhat.com> References: <1390226872-781-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1390226872-781-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 06/29] configure: added acpi unit-test files List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Marcel Apfelbaum From: Marcel Apfelbaum Ensure configure will set-up links for the files if the build is created in other directory. Signed-off-by: Marcel Apfelbaum Signed-off-by: Michael S. Tsirkin --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 3782a6a..32665e6 100755 --- a/configure +++ b/configure @@ -4766,6 +4766,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 -- MST