From c209c92fcd5d7097a75dfa17a022ec6b69d028db Mon Sep 17 00:00:00 2001 From: Arne Suppe Date: Wed, 21 Jun 2017 12:19:30 +0800 Subject: [PATCH] Fixed bug where make distribute duplicates python files in distribute/python --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 4d324160c08..c6d5685b140 100644 --- a/Makefile +++ b/Makefile @@ -694,6 +694,6 @@ $(DISTRIBUTE_DIR): all py | $(DISTRIBUTE_SUBDIRS) install -m 644 $(DYNAMIC_NAME) $(DISTRIBUTE_DIR)/lib cd $(DISTRIBUTE_DIR)/lib; rm -f $(DYNAMIC_NAME_SHORT); ln -s $(DYNAMIC_VERSIONED_NAME_SHORT) $(DYNAMIC_NAME_SHORT) # add python - it's not the standard way, indeed... - cp -r python $(DISTRIBUTE_DIR)/python + cp -r python $(DISTRIBUTE_DIR)/ -include $(DEPS)