From b0c910ac96c56a11a140ec24fbf12c976d43ebff Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sat, 6 Jan 2018 23:12:52 +0000 Subject: [PATCH] Fix out of source import_packages Makefile --- Examples/python/import_packages/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/python/import_packages/Makefile b/Examples/python/import_packages/Makefile index a70c97e8b..e6c07fe75 100644 --- a/Examples/python/import_packages/Makefile +++ b/Examples/python/import_packages/Makefile @@ -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; \