From patchwork Thu Dec 26 14:54:20 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcel Apfelbaum X-Patchwork-Id: 305279 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 508392C009E for ; Fri, 27 Dec 2013 01:57:08 +1100 (EST) Received: from localhost ([::1]:45916 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VwCMz-00085s-Ev for incoming@patchwork.ozlabs.org; Thu, 26 Dec 2013 09:57:05 -0500 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 Received: from localhost.localdomain.com (vpn-200-207.tlv.redhat.com [10.35.200.207]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id rBQEsTrI027723; Thu, 26 Dec 2013 09:54:33 -0500 From: Marcel Apfelbaum To: qemu-devel@nongnu.org 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> 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: mst@redhat.com Subject: [Qemu-devel] [PATCH resend 2/7] configure: added acpi unit-test 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 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