aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorkaf24@planb.cl.cam.ac.uk <kaf24@planb.cl.cam.ac.uk>2005-02-27 18:49:13 +0000
committerkaf24@planb.cl.cam.ac.uk <kaf24@planb.cl.cam.ac.uk>2005-02-27 18:49:13 +0000
commit49b26ed93c5ce506c5d4e8dc91a1b64a508b5dbe (patch)
treed9b38fe7765403d5c81f2c2af14b50476de0913d /Makefile
parent5deb88b1a9fd047b8b2c34e056845da908094bff (diff)
downloadxen-49b26ed93c5ce506c5d4e8dc91a1b64a508b5dbe.tar.gz
xen-49b26ed93c5ce506c5d4e8dc91a1b64a508b5dbe.tar.bz2
xen-49b26ed93c5ce506c5d4e8dc91a1b64a508b5dbe.zip
bitkeeper revision 1.1236.5.1 (42221629GhhpYjgKPI7BEb9C8FJ2aA)
Specify compile/target architectures for Xen build process via XEN_COMPILE_ARCH and XEN_TARGET_ARCH. Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 29b6203313..47a0d00157 100644
--- a/Makefile
+++ b/Makefile
@@ -22,9 +22,9 @@ XKERNELS := $(foreach kernel, $(KERNELS), $(patsubst buildconfigs/mk.%,%,$(wildc
export DESTDIR
# Export target architecture overrides to Xen and Linux sub-trees.
-ifneq ($(TARGET_ARCH),)
-SUBARCH := $(subst x86_32,i386,$(TARGET_ARCH))
-export TARGET_ARCH SUBARCH
+ifneq ($(XEN_TARGET_ARCH),)
+SUBARCH := $(subst x86_32,i386,$(XEN_TARGET_ARCH))
+export XEN_TARGET_ARCH SUBARCH
endif
include buildconfigs/Rules.mk