aboutsummaryrefslogtreecommitdiffstats
path: root/test/Makefile
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-06-20 23:49:19 +0200
committerLoïc Hoguin <[email protected]>2015-06-20 23:49:19 +0200
commit58c1ac0ff4878fb575f6246255c40d5d40adead9 (patch)
tree9c49275b4f57e549316826d0de6e26c9cd866e46 /test/Makefile
parent2d44b25e3497f705d5bb175d92e0c9d768c2baf6 (diff)
downloaderlang.mk-58c1ac0ff4878fb575f6246255c40d5d40adead9.tar.gz
erlang.mk-58c1ac0ff4878fb575f6246255c40d5d40adead9.tar.bz2
erlang.mk-58c1ac0ff4878fb575f6246255c40d5d40adead9.zip
Fix amqp_client/rabbit tests for FreeBSD
Diffstat (limited to 'test/Makefile')
-rw-r--r--test/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/Makefile b/test/Makefile
index 3039a70..4c26895 100644
--- a/test/Makefile
+++ b/test/Makefile
@@ -235,13 +235,13 @@ pkg-$(1): pkg-$(1)-clean pkg-$(1)-app1
cp ../packages.v2.tsv app1/.erlang.mk.packages.v2
$t \
if [ "$(1)" = "amqp_client" ]; then \
- virtualenv -p /usr/bin/python2.7 --distribute temp-python; \
- source temp-python/bin/activate; \
+ virtualenv -p python2.7 --distribute temp-python; \
+ . temp-python/bin/activate; \
$(MAKE) -C app1 RABBITMQ_CLIENT_PATCH=1; \
deactivate; \
elif [ "$(1)" = "rabbit" ]; then \
- virtualenv -p /usr/bin/python2.7 --distribute temp-python; \
- source temp-python/bin/activate; \
+ virtualenv -p python2.7 --distribute temp-python; \
+ . temp-python/bin/activate; \
$(MAKE) -C app1 RABBITMQ_SERVER_PATCH=1; \
deactivate; \
else \