shutils/install_funcs.sh: fix inverted test for $libtool_no_delete_archives.

--HG--
extra : convert_revision : xtraeme%40gmail.com-20091010081719-f6mx907ma5rtitux
This commit is contained in:
Juan RP 2009-10-10 10:17:19 +02:00
parent 53de9e531b
commit c0959e503f

View File

@ -74,7 +74,7 @@ install_src_phase()
run_func post_install
# Remove libtool archives from pkg destdir.
if [ -n "$libtool_no_delete_archives" ]; then
if [ -z "$libtool_no_delete_archives" ]; then
find ${DESTDIR} -type f -name \*.la -delete
fi