evolution-packages/common/hooks/post-install/00-libdir.sh

8 lines
170 B
Bash
Raw Permalink Normal View History

2023-08-05 21:19:04 +01:00
# This hook removes the wordsize specific libdir symlink.
hook() {
if [ "${pkgname}" != "base-files" ]; then
rm -f ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE}
fi
}