hooks/post-install/remove-libtool: do not escape * to make this work with virtuoso.
This commit is contained in:
parent
8fcb0e644a
commit
8fa3cba4ea
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue