WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] Fix the legacy %-build targets for dist installation of

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] Fix the legacy %-build targets for dist installation of
From: Xen patchbot -unstable <patchbot-unstable@xxxxxxxxxxxxxxxxxxx>
Date: Tue, 11 Oct 2005 09:16:10 +0000
Delivery-date: Tue, 11 Oct 2005 09:13:42 +0000
Envelope-to: www-data@xxxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User kaf24@xxxxxxxxxxxxxxxxxxxx
# Node ID a9924f452b3afbb0b5c5feff9c9875f96134d783
# Parent  e97436e48e56926eea0333fa122ee22692673c85
Fix the legacy %-build targets for dist installation of 
guest kernels.
Signed-off-by: Keir Fraser <keir@xxxxxxxxxxxxx>

diff -r e97436e48e56 -r a9924f452b3a Makefile
--- a/Makefile  Mon Oct 10 23:03:00 2005
+++ b/Makefile  Tue Oct 11 09:01:23 2005
@@ -66,7 +66,7 @@
        $(MAKE) -C tools install
 
 install-kernels:
-       for i in $(XKERNELS) ; do $(MAKE) $$i-build || exit 1; done
+       for i in $(XKERNELS) ; do $(MAKE) $$i-install || exit 1; done
 
 install-docs:
        sh ./docs/check_pkgs && $(MAKE) -C docs install || true
diff -r e97436e48e56 -r a9924f452b3a buildconfigs/Rules.mk
--- a/buildconfigs/Rules.mk     Mon Oct 10 23:03:00 2005
+++ b/buildconfigs/Rules.mk     Tue Oct 11 09:01:23 2005
@@ -87,8 +87,16 @@
        touch $@ # update timestamp to avoid rebuild
 endif
 
-%-build:
+%-install:
        $(MAKE) -f buildconfigs/mk.$* build
+
+%-dist: DESTDIR=$(DISTDIR)/install
+%-dist: %-install
+       @: # do nothing
+
+# Legacy dist target
+%-build: %-dist
+       @: # do nothing
 
 %-delete:
        $(MAKE) -f buildconfigs/mk.$* delete

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] Fix the legacy %-build targets for dist installation of, Xen patchbot -unstable <=