aboutsummaryrefslogtreecommitdiffstats
path: root/tools/include
diff options
context:
space:
mode:
authorKeir Fraser <keir.fraser@citrix.com>2008-01-27 13:03:10 +0000
committerKeir Fraser <keir.fraser@citrix.com>2008-01-27 13:03:10 +0000
commit29588460f3e1bd64a8624d24d7d867e773a3f485 (patch)
tree9060e890ff11299c3e2bc5836ae7792b7289a1b8 /tools/include
parent0814322de3f59025c66f57d6c16cd8ea53b312e1 (diff)
downloadxen-29588460f3e1bd64a8624d24d7d867e773a3f485.tar.gz
xen-29588460f3e1bd64a8624d24d7d867e773a3f485.tar.bz2
xen-29588460f3e1bd64a8624d24d7d867e773a3f485.zip
Do not special-case native architecture in mkchecker.py.
From: Bastian Blank <waldi@debian.org> Signed-off-by: Keir Fraser <keir.fraser@citrix.com>
Diffstat (limited to 'tools/include')
-rw-r--r--tools/include/xen-foreign/Makefile7
1 files changed, 1 insertions, 6 deletions
diff --git a/tools/include/xen-foreign/Makefile b/tools/include/xen-foreign/Makefile
index 411f043b77..adcbcff58a 100644
--- a/tools/include/xen-foreign/Makefile
+++ b/tools/include/xen-foreign/Makefile
@@ -18,7 +18,6 @@ clean:
rm -f checker checker.c
rm -f *.pyc *.o *~
-ifeq ($(CROSS_COMPILE)$(XEN_TARGET_ARCH),$(XEN_COMPILE_ARCH))
checker: checker.c $(headers)
$(HOSTCC) $(HOSTCFLAGS) -o $@ $<
@@ -26,10 +25,6 @@ check-headers: checker
./checker > tmp.size
diff -u $(ROOT)/foreign/reference.size tmp.size
rm tmp.size
-else
-check-headers:
- @echo "cross build: skipping check"
-endif
x86_32.h: $(MKHEADER_PY) $(ROOT)/arch-x86/xen-x86_32.h $(ROOT)/arch-x86/xen.h $(ROOT)/xen.h
python $< $* $@ $(filter %.h,$^)
@@ -41,4 +36,4 @@ ia64.h: $(MKHEADER_PY) $(ROOT)/arch-ia64.h $(ROOT)/xen.h
python $< $* $@ $(filter %.h,$^)
checker.c: $(MKCHECKER_PY)
- python $< $(XEN_TARGET_ARCH) $@ $(architectures)
+ python $< $@ $(architectures)