aboutsummaryrefslogtreecommitdiffstats
path: root/xen/tools/Makefile
diff options
context:
space:
mode:
authorkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-08 08:32:52 +0000
committerkaf24@firebug.cl.cam.ac.uk <kaf24@firebug.cl.cam.ac.uk>2005-08-08 08:32:52 +0000
commit5175be99420813b64bbe6687d8225ccf25374375 (patch)
tree46e722f9cb88c5f879a0ddc1efeff1733edb8779 /xen/tools/Makefile
parentaba8322b543c753ed1806098085aa20379bebabd (diff)
downloadxen-5175be99420813b64bbe6687d8225ccf25374375.tar.gz
xen-5175be99420813b64bbe6687d8225ccf25374375.tar.bz2
xen-5175be99420813b64bbe6687d8225ccf25374375.zip
The attached patch adds -Werror to HOSTCFLAGS in Config.mk, makes
xen/tools actually use HOSTCFLAGS (it was already using HOSTCC), and fixes some gcc-4.0 signedness warnings in xen/tools/symbols.c. Signed-off-by: Josh Triplett <josht@us.ibm.com>
Diffstat (limited to 'xen/tools/Makefile')
-rw-r--r--xen/tools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/xen/tools/Makefile b/xen/tools/Makefile
index 04d7020cd8..4d353617bd 100644
--- a/xen/tools/Makefile
+++ b/xen/tools/Makefile
@@ -10,4 +10,4 @@ clean:
rm -f *.o symbols
symbols: symbols.c
- $(HOSTCC) -o $@ $<
+ $(HOSTCC) $(HOSTCFLAGS) -o $@ $<