aboutsummaryrefslogtreecommitdiffstats
path: root/tools/tests
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2009-01-12 16:39:07 +0000
committerKeir Fraser <keir.fraser@citrix.com>2009-01-12 16:39:07 +0000
commitbd3358a451b0580c96915683befdf023deb1ba82 (patch)
tree9feee6c66367fb24a12ee03d10da5124a1761bbc /tools/tests
parent4ef2a41a2d061e76d799e31fba009e992cf8a257 (diff)
downloadxen-bd3358a451b0580c96915683befdf023deb1ba82.tar.gz
xen-bd3358a451b0580c96915683befdf023deb1ba82.tar.bz2
xen-bd3358a451b0580c96915683befdf023deb1ba82.zip
tools: Don't turn CFLAGS into a := (immediate evaluation) variable as
this breaks 'CFLAGS += -MMD -MF .$(@F).d' Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/tests')
-rw-r--r--tools/tests/blowfish.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/tests/blowfish.mk b/tools/tests/blowfish.mk
index dfd7bd2be8..203eb50790 100644
--- a/tools/tests/blowfish.mk
+++ b/tools/tests/blowfish.mk
@@ -1,7 +1,7 @@
override XEN_TARGET_ARCH = x86_32
XEN_ROOT = ../..
-CFLAGS :=
+CFLAGS =
include $(XEN_ROOT)/tools/Rules.mk
# Disable PIE/SSP if GCC supports them. They can break us.