aboutsummaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorEwan Mellor <ewan@xensource.com>2007-03-23 11:32:32 +0000
committerEwan Mellor <ewan@xensource.com>2007-03-23 11:32:32 +0000
commit96e8ce66553f9bb2fa023924ef9d8dc084b28553 (patch)
tree016e9c38093863ee2763c1e2ea93b8a270334549 /config
parenta48a059e84c75e930df12fcc6e1175e3adbc5755 (diff)
downloadxen-96e8ce66553f9bb2fa023924ef9d8dc084b28553.tar.gz
xen-96e8ce66553f9bb2fa023924ef9d8dc084b28553.tar.bz2
xen-96e8ce66553f9bb2fa023924ef9d8dc084b28553.zip
Since CPP is being used with CFLAGS, it should be in lock-step with CC,
to avoid having to specify both CC and CPP for the build. Signed-off-by: Jan Beulich <jbeulich@novell.com>
Diffstat (limited to 'config')
-rw-r--r--config/StdGNU.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config/StdGNU.mk b/config/StdGNU.mk
index 8c947f4832..fd7bc53a56 100644
--- a/config/StdGNU.mk
+++ b/config/StdGNU.mk
@@ -1,7 +1,7 @@
AS = $(CROSS_COMPILE)as
LD = $(CROSS_COMPILE)ld
CC = $(CROSS_COMPILE)gcc
-CPP = $(CROSS_COMPILE)gcc -E
+CPP = $(CC) -E
AR = $(CROSS_COMPILE)ar
RANLIB = $(CROSS_COMPILE)ranlib
NM = $(CROSS_COMPILE)nm