pkgs/common/hooks/post-install/00-libdir.sh
2022-04-12 14:56:19 -04:00

7 lines
170 B
Bash

# This hook removes the wordsize specific libdir symlink.
hook() {
if [ "${pkgname}" != "base-files" ]; then
rm -f ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE}
fi
}