"make check-clean-src" now also checks if the "python" program is
found in the source directory: fail with an error if it does exist.
.PHONY: check-clean-src
check-clean-src:
@if test -n "$(VPATH)" -a \( \
- -f "$(srcdir)/Programs/python.o" \
+ -f "$(srcdir)/$(BUILDPYTHON)" \
+ -o -f "$(srcdir)/Programs/python.o" \
-o -f "$(srcdir)\Python/frozen_modules/importlib._bootstrap.h" \
\); then \
echo "Error: The source directory ($(srcdir)) is not clean" ; \
--- /dev/null
+"make check-clean-src" now also checks if the "python" program is found in
+the source directory: fail with an error if it does exist. Patch by Victor
+Stinner.