Several of the components of tools are optional, allow the python tools to be optional as well. The default, however, remains to include them. Signed-off-by: Ben Thomas (ben@virtualiron.com) diff -r 277d4a0d0cdf Config.mk --- a/Config.mk Tue Mar 06 09:29:25 2007 -0500 +++ b/Config.mk Tue Mar 06 10:55:39 2007 -0500 @@ -77,5 +77,6 @@ VTPM_TOOLS ?= n VTPM_TOOLS ?= n LIBXENAPI_BINDINGS ?= n XENFB_TOOLS ?= n +PYTHON_TOOLS ?= y -include $(XEN_ROOT)/.config diff -r 277d4a0d0cdf tools/Makefile --- a/tools/Makefile Tue Mar 06 09:29:25 2007 -0500 +++ b/tools/Makefile Tue Mar 06 10:57:36 2007 -0500 @@ -24,9 +24,9 @@ SUBDIRS-$(LIBXENAPI_BINDINGS) += libxen # These don't cross-compile ifeq ($(XEN_COMPILE_ARCH),$(XEN_TARGET_ARCH)) -SUBDIRS-y += python -SUBDIRS-y += pygrub -SUBDIRS-y += ptsname +SUBDIRS-$(PYTHON_TOOLS) += python +SUBDIRS-$(PYTHON_TOOLS) += pygrub +SUBDIRS-$(PYTHON_TOOLS) += ptsname endif .PHONY: all