From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1LXEw0-0000LL-Ij for qemu-devel@nongnu.org; Wed, 11 Feb 2009 08:15:24 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1LXEvz-0000Kc-KU for qemu-devel@nongnu.org; Wed, 11 Feb 2009 08:15:23 -0500 Received: from [199.232.76.173] (port=42020 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1LXEvy-0000KQ-Mq for qemu-devel@nongnu.org; Wed, 11 Feb 2009 08:15:23 -0500 Received: from mx2.redhat.com ([66.187.237.31]:58454) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1LXEvy-0002oP-69 for qemu-devel@nongnu.org; Wed, 11 Feb 2009 08:15:22 -0500 Received: from int-mx2.corp.redhat.com (int-mx2.corp.redhat.com [172.16.27.26]) by mx2.redhat.com (8.13.8/8.13.8) with ESMTP id n1BDFLZX007755 for ; Wed, 11 Feb 2009 08:15:21 -0500 From: Amit Shah Date: Wed, 11 Feb 2009 18:45:13 +0530 Message-Id: <1234358114-23390-4-git-send-email-amit.shah@redhat.com> In-Reply-To: <1234358114-23390-3-git-send-email-amit.shah@redhat.com> References: <1234358114-23390-1-git-send-email-amit.shah@redhat.com> <1234358114-23390-2-git-send-email-amit.shah@redhat.com> <1234358114-23390-3-git-send-email-amit.shah@redhat.com> Subject: [Qemu-devel] [PATCH 3/4] Update Makefile to copy the cpudef files to install location Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Amit Shah The x86 cpudef files are to be copied in $(PREFIX)/share/qemu/cpudefs/ Signed-off-by: Amit Shah --- qemu/Makefile | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/qemu/Makefile b/qemu/Makefile index 4f7a55a..1aefc48 100644 --- a/qemu/Makefile +++ b/qemu/Makefile @@ -246,6 +246,10 @@ ifndef CONFIG_WIN32 $(INSTALL) -m 644 $(SRC_PATH)/keymaps/$$x "$(DESTDIR)$(datadir)/keymaps"; \ done endif + + mkdir -p "$(DESTDIR)$(datadir)/cpudefs" + $(INSTALL) -m 644 $(SRC_PATH)/target-i386/cpudefs/* "$(DESTDIR)$(datadir)/cpudefs"; + for d in $(TARGET_DIRS); do \ $(MAKE) -C $$d $@ || exit 1 ; \ done -- 1.6.0.6