aboutsummaryrefslogtreecommitdiffstats
path: root/xen/Rules.mk
diff options
context:
space:
mode:
authorkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-08-18 15:22:54 +0100
committerkfraser@localhost.localdomain <kfraser@localhost.localdomain>2006-08-18 15:22:54 +0100
commitaf2ffa672b1fef63a6d17356791d8fef15930259 (patch)
treee1f72440c7f2630040b388ee6af7abd52bdf6e9b /xen/Rules.mk
parent11ef9f5995508bdcf0b6490d7ad8a7f6dcc3ef51 (diff)
downloadxen-af2ffa672b1fef63a6d17356791d8fef15930259.tar.gz
xen-af2ffa672b1fef63a6d17356791d8fef15930259.tar.bz2
xen-af2ffa672b1fef63a6d17356791d8fef15930259.zip
Fix Xen Rules.mk eval order so that debug=y always sets verbose=y.
Signed-off-by: Keir Fraser <keir@xensource.com>
Diffstat (limited to 'xen/Rules.mk')
-rw-r--r--xen/Rules.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/xen/Rules.mk b/xen/Rules.mk
index 15c0af3cc1..e319ffb619 100644
--- a/xen/Rules.mk
+++ b/xen/Rules.mk
@@ -8,6 +8,9 @@ perfc ?= n
perfc_arrays?= n
crash_debug ?= n
+XEN_ROOT=$(BASEDIR)/..
+include $(XEN_ROOT)/Config.mk
+
# Hardcoded configuration implications and dependencies.
# Do this is a neater way if it becomes unwieldy.
ifeq ($(debug),y)
@@ -17,9 +20,6 @@ ifeq ($(perfc_arrays),y)
perfc := y
endif
-XEN_ROOT=$(BASEDIR)/..
-include $(XEN_ROOT)/Config.mk
-
# Set ARCH/SUBARCH appropriately.
override COMPILE_SUBARCH := $(XEN_COMPILE_ARCH)
override TARGET_SUBARCH := $(XEN_TARGET_ARCH)