repo.or.cz
/
void-pkg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
terragrunt: update to 0.69.12.
[void-pkg.git]
/
common
/
hooks
/
post-install
/
02-remove-libtool-archives.sh
blob
dd4afe86f681f22e4cdf435a71238c2d3ba170e2
1
# This hook removes libtool archives (.la) unless $keep_libtool_archives is set.
2
3
hook
() {
4
if
[
-z
"
$keep_libtool_archives
"
-a -d
"
${PKGDESTDIR}
"
];
then
5
find
${PKGDESTDIR}
-name
\
*
.la
-delete
6
fi
7
}