Created
April 12, 2014 20:40
-
-
Save CMDann/10555757 to your computer and use it in GitHub Desktop.
Rebuilding OpenSSL on Ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
mkdir sslfix | |
cd sslfix | |
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_1.0.1e-3ubuntu1.2.dsc | |
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_1.0.1e.orig.tar.gz | |
wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/openssl_1.0.1e-3ubuntu1.2.debian.tar.gz | |
sudo apt-get build-dep openssl | |
dpkg-source -x openssl_1.0.1e-3ubuntu1.2.dsc | |
cd openssl-1.0.1e/ | |
dpkg-buildpackage -us -uc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment