aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authoriap10@labyrinth.cl.cam.ac.uk <iap10@labyrinth.cl.cam.ac.uk>2005-01-22 22:03:34 +0000
committeriap10@labyrinth.cl.cam.ac.uk <iap10@labyrinth.cl.cam.ac.uk>2005-01-22 22:03:34 +0000
commitd2f5d53621f141ce1be63eeeae4a8a9e289498d8 (patch)
tree206f20e7e561bfdab882dacb13aab906755e6cf0 /Makefile
parent84a280c8928e988f7e8fac3fe69f1b1e67d95da5 (diff)
downloadxen-d2f5d53621f141ce1be63eeeae4a8a9e289498d8.tar.gz
xen-d2f5d53621f141ce1be63eeeae4a8a9e289498d8.tar.bz2
xen-d2f5d53621f141ce1be63eeeae4a8a9e289498d8.zip
bitkeeper revision 1.1159.223.26 (41f2cdb6LNpheOtPoAKEUn-czlZFig)
Description: use DESTDIR correctly Standard makefiles always attempt to install to the root(/). Setting DESTDIR is the normal way to install to an alternative location. Setting prefix has the possibility of breaking programs, as the prefix may have been embedded inside a compiled binary. From: Adam Heath <doogie@brainfood.com> Signed-off-by: ian.pratt@cl.cam.ac.uk
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 6 insertions, 5 deletions
diff --git a/Makefile b/Makefile
index 230af6db05..2e7d05cd19 100644
--- a/Makefile
+++ b/Makefile
@@ -2,8 +2,9 @@
# Grand Unified Makefile for Xen.
#
-DIST_DIR ?= $(shell pwd)/dist
-INSTALL_DIR ?= $(DIST_DIR)/install
+DIST_DIR := $(CURDIR)/dist
+DESTDIR := $(DIST_DIR)/install
+
INSTALL := install
INSTALL_DIR := $(INSTALL) -d -m0755
INSTALL_DATA := $(INSTALL) -m0644
@@ -18,7 +19,7 @@ ALLSPARSETREES = $(patsubst %-xen-sparse,%,$(wildcard *-xen-sparse))
XKERNELS := $(foreach kernel, $(KERNELS), $(patsubst buildconfigs/mk.%,%,$(wildcard buildconfigs/mk.$(kernel))) )
-export INSTALL_DIR
+export DESTDIR
include buildconfigs/Rules.mk
@@ -56,10 +57,10 @@ dist: xen.dist tools.dist kernels docs.install
$(INSTALL_PROG) tools/check/chk tools/check/check_* $(DIST_DIR)/check
xen:
- $(MAKE) prefix=$(INSTALL_DIR) dist=yes -C xen install
+ $(MAKE) dist=yes -C xen install
tools:
- $(MAKE) prefix=$(INSTALL_DIR) dist=yes -C tools install
+ $(MAKE) dist=yes -C tools install
kernels: $(addsuffix -build,$(XKERNELS))