aboutsummaryrefslogtreecommitdiffstats
path: root/Config.mk
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-02-02 09:21:04 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-02-02 09:21:04 +0000
commit4134c89049b39f2ae235fff2b8483bd7e5bd1863 (patch)
treecc737db6dceed80e4eb3bcb2b5808e8a9776f7d9 /Config.mk
parent2090d39064dc6296927e92d17f091c65e33c682c (diff)
downloadxen-4134c89049b39f2ae235fff2b8483bd7e5bd1863.tar.gz
xen-4134c89049b39f2ae235fff2b8483bd7e5bd1863.tar.bz2
xen-4134c89049b39f2ae235fff2b8483bd7e5bd1863.zip
Fix 'debug ?= y' to actually enable debug build.
Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'Config.mk')
-rw-r--r--Config.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Config.mk b/Config.mk
index 2144513410..abdb1abe4a 100644
--- a/Config.mk
+++ b/Config.mk
@@ -1,7 +1,7 @@
# -*- mode: Makefile; -*-
-# A debug build of Xen and tools?
-debug ?= y ## TEMPORARILY ENABLED
+# A debug build of Xen and tools? TEMPORARILY ENABLED
+debug ?= y
XEN_COMPILE_ARCH ?= $(shell uname -m | sed -e s/i.86/x86_32/ \
-e s/i86pc/x86_32/ -e s/amd64/x86_64/)