aboutsummaryrefslogtreecommitdiff
path: root/common/hooks/post-install/00-libdir.sh
blob: 21c7e35ea95b3b8f8ce4091f80f3922b57312612 (plain) (blame)
1
2
3
4
5
6
7
# This hook removes the wordsize specific libdir symlink.

hook() {
	if [ "${pkgname}" != "base-files" ]; then
		rm -f ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE}
	fi
}