Fix out of source import_packages Makefile

This commit is contained in:
William S Fulton 2018-01-06 23:12:52 +00:00
commit b0c910ac96

View file

@ -18,7 +18,7 @@ import_packages_subdirs = \
check: build
if test "x$(SRCDIR)" != x; then \
for file in `cd $(SRCDIR) && find . -type f -name "*.py"`; do \
mkdir -p `dirname $$file` \
mkdir -p `dirname $$file`; \
cp "${SRCDIR}$$file" "$$file" || exit 1; \
done; \
fi; \