hooks/post-install/remove-libtool: do not escape * to make this work with virtuoso.

This commit is contained in:
Juan RP 2014-04-02 12:39:58 +02:00
parent 8fcb0e644a
commit 8fa3cba4ea
1 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,6 @@
hook() {
if [ -z "$keep_libtool_archives" -a -d "${PKGDESTDIR}" ]; then
find ${PKGDESTDIR} -type f -name *.la -delete
find ${PKGDESTDIR} -type f -name \*.la -delete
fi
}