aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authormafetter@fleming.research <mafetter@fleming.research>2004-11-10 15:51:36 +0000
committermafetter@fleming.research <mafetter@fleming.research>2004-11-10 15:51:36 +0000
commit69f1a2204755865fee184e51a4d25087fe1ba99b (patch)
tree82cb0004c75fffb94a73472a030ee0380abf4850 /Makefile
parent55f23c63dd80c2104448fa81fec8b077e56c5f59 (diff)
downloadxen-69f1a2204755865fee184e51a4d25087fe1ba99b.tar.gz
xen-69f1a2204755865fee184e51a4d25087fe1ba99b.tar.bz2
xen-69f1a2204755865fee184e51a4d25087fe1ba99b.zip
bitkeeper revision 1.1159.170.7 (41923908rDeIw_dn4LNMwv4Ji60AVg)
"make install" was still using the old $TOP/install area for some of its work, rather than the new $TOP/dist/install area. Fixed.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 6ce225a449..b5cb717dad 100644
--- a/Makefile
+++ b/Makefile
@@ -35,8 +35,8 @@ dist: xen tools kernels docs
install:
$(MAKE) -C xen install
$(MAKE) -C tools install
- $(shell cp -a install/boot/* /boot/)
- $(shell cp -a install/lib/modules/* /lib/modules/)
+ $(shell cp -a $(INSTALL_DIR)/boot/* /boot/)
+ $(shell cp -a $(INSTALL_DIR)/lib/modules/* /lib/modules/)
sh ./docs/check_pkgs && $(MAKE) -C docs install || true
$(shell cp -dR $(INSTALL_DIR)/boot/*$(LINUX_VER)* $(prefix)/boot/)
$(shell cp -dR $(INSTALL_DIR)/lib/modules/* $(prefix)/lib/modules/)