Skip to content

Commit

Permalink
bootstrap: install libssl-dev on ubuntu if missing
Browse files Browse the repository at this point in the history
python-pip fails to install without libssl-dev

Signed-off-by: Andrew Schoen <[email protected]>
  • Loading branch information
andrewschoen committed Jun 29, 2015
1 parent d69791d commit 03e61ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Linux)
# C) Adding "Precise" conditionals somewhere, eg. conditionalizing
# this bootstrap script to only use the python-libvirt package on
# Ubuntu Precise.
for package in python-dev python-pip python-virtualenv libevent-dev python-libvirt libmysqlclient-dev libffi-dev; do
for package in python-dev libssl-dev python-pip python-virtualenv libevent-dev python-libvirt libmysqlclient-dev libffi-dev; do
if [ "$(dpkg --status -- $package|sed -n 's/^Status: //p')" != "install ok installed" ]; then
# add a space after old values
missing="${missing:+$missing }$package"
Expand Down

0 comments on commit 03e61ed

Please sign in to comment.