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

View file

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