From: Olaf Hering Date: Mon, 22 Sep 2014 12:59:54 +0000 (+0200) Subject: tools: remove obsolete path.py from tools/python X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~4373 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=dcf4dd274e33ce57a3b71e311ad2c14407806f71;p=xen.git tools: remove obsolete path.py from tools/python The directory tools/python/xen/util does not exist. Upcoming changes to genpath will fail if the rule persists. Nothing uses path.py (anymore?), so get rid it. Signed-off-by: Olaf Hering Acked-by: Ian Campbell [ ijc -- removed from .gitignore too ] --- diff --git a/.gitignore b/.gitignore index 8e34b85189..c7cb679ad4 100644 --- a/.gitignore +++ b/.gitignore @@ -186,7 +186,6 @@ tools/misc/lowmemd tools/misc/xencov tools/pygrub/build/* tools/python/build/* -tools/python/xen/util/path.py tools/remus/imqebt/imqebt tools/remus/kmod/*(.cmd|.mod|.ko|.mod.c|.symvers|.xen) tools/security/secpol_tool diff --git a/tools/python/Makefile b/tools/python/Makefile index c9143322d9..4918229df7 100644 --- a/tools/python/Makefile +++ b/tools/python/Makefile @@ -4,13 +4,8 @@ include $(XEN_ROOT)/tools/Rules.mk .PHONY: all all: build -XENPATH = "xen/util/path.py" - -genpath-target = $(call buildmakevars2file,$(XENPATH)) -$(eval $(genpath-target)) - .PHONY: build -build: genpath genwrap.py $(XEN_ROOT)/tools/libxl/libxl_types.idl \ +build: genwrap.py $(XEN_ROOT)/tools/libxl/libxl_types.idl \ $(XEN_ROOT)/tools/libxl/idl.py PYTHONPATH=$(XEN_ROOT)/tools/libxl $(PYTHON) genwrap.py \ $(XEN_ROOT)/tools/libxl/libxl_types.idl \ @@ -31,6 +26,6 @@ test: clean: find . \( -name "*.py[ocd]" -o -name "*~" -o -name "_*.[hc]" \) -delete rm -rf build/ - rm -f $(XENPATH) $(DEPS) + rm -f $(DEPS) -include $(DEPS)