diff options
author | Duda Dornelles <ddornell@thoughtworks.com> | 2015-02-11 17:45:35 -0200 |
---|---|---|
committer | Duda Dornelles <ddornell@thoughtworks.com> | 2015-02-12 11:31:35 -0200 |
commit | b5113f807ccc97e171ab520307544792101ec425 (patch) | |
tree | 768af489fc3cc7c610d0d0616b3a7d23355dfe0e | |
parent | 6750381bbf99ce1cbe837eacac55a8e2801e7394 (diff) |
#272 reinstalling pysqlcipher on install-pixelated so that it gets recompiled with the right version of glibc (required for wheezy and just safier to do that for other systems)
-rwxr-xr-x | install-pixelated.sh | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/install-pixelated.sh b/install-pixelated.sh index 541220aa..934f6543 100755 --- a/install-pixelated.sh +++ b/install-pixelated.sh @@ -100,11 +100,10 @@ rm -rf "$VIRTUALENV_PATH" virtualenv "$VIRTUALENV_PATH" source "$VIRTUALENV_PATH/bin/activate" ./go setup --always-unzip - # see https://github.com/pixelated-project/pixelated-user-agent/issues/225#issuecomment-70651268 # for details why we need to reinstall enum34 -pip uninstall -y enum34 -pip install enum34 +pip uninstall -y enum34 && pip install enum34 +pip uninstall -y pysqlcipher && pip install pysqlcipher # this is needed so pysqlcipher gets recompiled with the right version of glibc # print usage cat <<EOF |