bzip2: Keep libbz2.so.1.0 around.

Some packages (e.g. libarchive) try to link there. Reported by jack_c in IRC.
This commit is contained in:
Shea Levy 2012-07-12 14:28:19 -04:00
parent df681bab39
commit 8480a90d1e

View File

@ -10,7 +10,7 @@ if test -n "$sharedLibrary"; then
preInstall() { preInstall() {
mkdir -p $out/lib mkdir -p $out/lib
mv libbz2.so* $out/lib mv libbz2.so* $out/lib
(cd $out/lib && ln -s libbz2.so.1.0.? libbz2.so && mv libbz2.so.1.0 libbz2.so.1) (cd $out/lib && ln -s libbz2.so.1.0.? libbz2.so && ln -s libbz2.so.1.0.? libbz2.so.1);
} }
fi fi