common/hooks: Fix hooks when build_style=meta
This commit is contained in:
parent
f5a64d0ecf
commit
f68bfd6575
@ -1,7 +1,7 @@
|
||||
# This hook removes perl pod/.packlist files.
|
||||
|
||||
hook() {
|
||||
if [ "$pkgname" != "perl" ]; then
|
||||
if [ "$pkgname" != "perl" -a -d "${PKGDESTDIR}" ]; then
|
||||
find ${PKGDESTDIR} -type f -name perllocal.pod -delete
|
||||
find ${PKGDESTDIR} -type f -name .packlist -delete
|
||||
fi
|
||||
|
@ -1,5 +1,7 @@
|
||||
# This hook removes python bytecode files (.py[co]).
|
||||
|
||||
hook() {
|
||||
if [ -d "${PKGDESTDIR}" ]; then
|
||||
find ${PKGDESTDIR} -type f -name '*.py[co]' -delete
|
||||
fi
|
||||
}
|
||||
|
@ -1,6 +1,7 @@
|
||||
# This hooks removes empty dirs and warns about them.
|
||||
|
||||
hook() {
|
||||
if [ -d "${PKGDESTDIR}" ]; then
|
||||
find "${PKGDESTDIR}" -type d -empty|sort -r|while read f; do
|
||||
_dir="${f##${PKGDESTDIR}}"
|
||||
[ -z "${_dir}" ] && continue
|
||||
@ -9,4 +10,5 @@ hook() {
|
||||
done
|
||||
# Create PKGDESTDIR in case it has been removed previously.
|
||||
mkdir -p ${PKGDESTDIR}
|
||||
fi
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user