diff options
author | Loïc Hoguin <[email protected]> | 2015-07-02 19:05:35 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-07-02 19:05:35 +0200 |
commit | f634b7483c1954170d5bdb3283b05981ed3e955e (patch) | |
tree | 7144b5e9f2434da1bfbc65f7d48325d9f2c97ce9 | |
parent | 6a3bf18655384cbd534308104d82b1ae0f66c228 (diff) | |
download | erlang.mk-f634b7483c1954170d5bdb3283b05981ed3e955e.tar.gz erlang.mk-f634b7483c1954170d5bdb3283b05981ed3e955e.tar.bz2 erlang.mk-f634b7483c1954170d5bdb3283b05981ed3e955e.zip |
No need to use virtualenv to test RabbitMQ projects anymore
-rw-r--r-- | test/Makefile | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/test/Makefile b/test/Makefile index 4c6f25e..f2beb86 100644 --- a/test/Makefile +++ b/test/Makefile @@ -237,15 +237,9 @@ pkg-$(1): pkg-$(1)-clean pkg-$(1)-app1 > app1/Makefile $t \ if [ "$(1)" = "amqp_client" ]; then \ - 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 python2.7 --distribute temp-python; \ - . temp-python/bin/activate; \ $(MAKE) -C app1 RABBITMQ_SERVER_PATCH=1; \ - deactivate; \ else \ $(MAKE) -C app1; \ fi; \ |