1 # This program depends on libcrypto 0.9.8, but works fine with 1.0.0.
2 # Therefore, we need to create a link to the new binary.
4 ln -s -f /usr/lib/libcrypto.so /usr/lib/libcrypto.so.0.9.8
8 # If the created link still exists on removal, remove it as well.
10 if [ -L /usr/lib/libcrypto.so.0.9.8 ]; then
11 rm /usr/lib/libcrypto.so.0.9.8
16 # vim:set ts=2 sw=2 et: