1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Stop creating symlinks to libraries without sonames. (caused recursive

symlinks overwriting the original file).
This commit is contained in:
Matthias Dieter Wallnöfer 2008-09-29 22:47:07 +02:00 committed by Jelmer Vernooij
parent c383e8d760
commit f22f04f76b

View File

@ -15,7 +15,9 @@ for p in $*; do
mv $LIBDIR/$p2 $LIBDIR/$p2.old
fi
cp $p $LIBDIR/
ln -sf $p2 $LIBDIR/$lnname
if [ $p2 != $lnname ]; then
ln -sf $p2 $LIBDIR/$lnname
fi
done
cat << EOF