From 8fa3cba4ea4eb9a79d1297170fa80c2250bcd82d Mon Sep 17 00:00:00 2001 From: Juan RP Date: Wed, 2 Apr 2014 12:39:58 +0200 Subject: [PATCH] hooks/post-install/remove-libtool: do not escape * to make this work with virtuoso. --- common/hooks/post-install/02-remove-libtool-archives.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/hooks/post-install/02-remove-libtool-archives.sh b/common/hooks/post-install/02-remove-libtool-archives.sh index bffe02c090..e2a10d0a6a 100644 --- a/common/hooks/post-install/02-remove-libtool-archives.sh +++ b/common/hooks/post-install/02-remove-libtool-archives.sh @@ -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 }