diff options
author | Ivan Alejandro <ivanalejandro0@gmail.com> | 2015-09-09 17:04:07 -0300 |
---|---|---|
committer | Ivan Alejandro <ivanalejandro0@gmail.com> | 2015-09-11 15:21:11 -0300 |
commit | d13bcb34c7636876c69e39399129957a6c11da03 (patch) | |
tree | 5e63527a36f4348a9ba56d772344695b2257a85d /docker/leap_bootstrap.sh | |
parent | cd9a84070591e18780bd244925f443351e71d1cb (diff) |
[pkg] add libzmq dependency
This is needed if we use wheels, since the zmq library is not build as
it is when we install from code.
Diffstat (limited to 'docker/leap_bootstrap.sh')
-rwxr-xr-x | docker/leap_bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/leap_bootstrap.sh b/docker/leap_bootstrap.sh index 195527e3..4f553ee7 100755 --- a/docker/leap_bootstrap.sh +++ b/docker/leap_bootstrap.sh @@ -48,7 +48,7 @@ apt_install_dependencies() { status="installing system dependencies" echo "${cc_green}Status: $status...${cc_normal}" set -x - sudo apt-get install -y git python-dev python-setuptools python-virtualenv python-pip libssl-dev python-openssl libsqlite3-dev g++ openvpn pyside-tools python-pyside libffi-dev + sudo apt-get install -y git python-dev python-setuptools python-virtualenv python-pip libssl-dev python-openssl libsqlite3-dev g++ openvpn pyside-tools python-pyside libffi-dev libzmq-dev set +x } |