From patchwork Fri Feb 26 08:30:28 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Amit Shah X-Patchwork-Id: 46314 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id E80841008D4 for ; Fri, 26 Feb 2010 19:40:15 +1100 (EST) Received: from localhost ([127.0.0.1]:51889 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nkvia-0000eg-Qz for incoming@patchwork.ozlabs.org; Fri, 26 Feb 2010 03:38:40 -0500 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Nkvc2-0000cs-Ox for qemu-devel@nongnu.org; Fri, 26 Feb 2010 03:31:54 -0500 Received: from [199.232.76.173] (port=60991 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Nkvby-0000cU-Vz for qemu-devel@nongnu.org; Fri, 26 Feb 2010 03:31:51 -0500 Received: from Debian-exim by monty-python.gnu.org with spam-scanned (Exim 4.60) (envelope-from ) id 1Nkvbw-00025J-IK for qemu-devel@nongnu.org; Fri, 26 Feb 2010 03:31:50 -0500 Received: from mx1.redhat.com ([209.132.183.28]:38566) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Nkvbw-00025F-6D for qemu-devel@nongnu.org; Fri, 26 Feb 2010 03:31:48 -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.13.8/8.13.8) with ESMTP id o1Q8Vk4n025129 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Fri, 26 Feb 2010 03:31:47 -0500 Received: from localhost (dhcp1-127.pnq.redhat.com [10.65.193.127]) by int-mx01.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id o1Q8Vi3r014388; Fri, 26 Feb 2010 03:31:46 -0500 From: Amit Shah To: qemu-devel@nongnu.org Date: Fri, 26 Feb 2010 14:00:28 +0530 Message-Id: <1267173028-19509-1-git-send-email-amit.shah@redhat.com> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.11 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: Amit Shah Subject: [Qemu-devel] [PATCH] Fix 'make install' from non-srcdir build X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Commit b5ec5ce0 broke 'make install' from non source-dir build. Fix. Signed-off-by: Amit Shah --- Makefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Makefile b/Makefile index 296f500..14c1930 100644 --- a/Makefile +++ b/Makefile @@ -207,7 +207,7 @@ endif install-sysconfig: $(INSTALL_DIR) "$(sysconfdir)/qemu" - $(INSTALL_DATA) sysconfigs/target/target-x86_64.conf "$(sysconfdir)/qemu" + $(INSTALL_DATA) $(SRC_PATH)/sysconfigs/target/target-x86_64.conf "$(sysconfdir)/qemu" install: all $(if $(BUILD_DOCS),install-doc) install-sysconfig $(INSTALL_DIR) "$(DESTDIR)$(bindir)"