projects
/
aubio.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
86a0c47
)
Makefile: use pip install --user, also uninstall
author
Paul Brossier
<piem@piem.org>
Fri, 22 Apr 2016 01:02:29 +0000
(
03:02
+0200)
committer
Paul Brossier
<piem@piem.org>
Fri, 22 Apr 2016 01:02:29 +0000
(
03:02
+0200)
Makefile
patch
|
blob
|
history
diff --git
a/Makefile
b/Makefile
index
c14b80f
..
b03e2f2
100644
(file)
--- a/
Makefile
+++ b/
Makefile
@@
-25,9
+25,10
@@
build_python:
cd python && ./setup.py build
test_python:
- cd python && pip install .
+ cd python && pip install
--user -v
.
[ -f build/src/libaubio.[0-9].dylib ] && ( mkdir -p ~/lib && cp -prv build/src/libaubio.4.dylib ~/lib ) || true
LD_LIBRARY_PATH=$(PWD)/build/src python/tests/run_all_tests
+ cd python && pip uninstall -y -v aubio
clean_python:
cd python && ./setup.py clean