summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Suppe <suppe@andrew.cmu.edu>2017-06-21 12:19:30 +0800
committerArne Suppe <suppe@andrew.cmu.edu>2017-06-21 12:19:30 +0800
commitc209c92fcd5d7097a75dfa17a022ec6b69d028db (patch)
treeff32d7b26a61e3e97c4463d84d87b71155e55ae5
parentf16b5f2eb96cbb97d9a4b2b7312a23cb16f43dac (diff)
downloadcaffe-c209c92fcd5d7097a75dfa17a022ec6b69d028db.tar.gz
caffe-c209c92fcd5d7097a75dfa17a022ec6b69d028db.tar.bz2
caffe-c209c92fcd5d7097a75dfa17a022ec6b69d028db.zip
Fixed bug where make distribute duplicates python files in distribute/python
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4d324160..c6d5685b 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)