Created
December 12, 2011 00:17
-
-
Save lamnk/1463701 to your computer and use it in GitHub Desktop.
Some symlinks needed to run pypy on CentOS 5.7 x64
This file contains 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 | |
# For CentOs 5.7 | |
ln -s /lib/libssl.so.0.9.8e /lib/libssl.so.0.9.8 | |
ln -s /lib64/libssl.so.0.9.8e /lib64/libssl.so.0.9.8 | |
ln -s /lib/libcrypto.so.0.9.8e /lib/libcrypto.so.0.9.8 | |
ln -s /lib64/libcrypto.so.0.9.8e /lib64/libcrypto.so.0.9.8 | |
ln -s /lib/libexpat.so.0 /lib/libexpat.so.1 | |
ln -s /lib64/libexpat.so.0 /lib64/libexpat.so.1 | |
ln -s /usr/lib/libbz2.so.1 /usr/lib/libbz2.so.1.0 | |
ln -s /usr/lib64/libbz2.so.1 /usr/lib64/libbz2.so.1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment