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

10 lines
267 B
Bash

# This hook creates the wordsize specific libdir symlink.
hook() {
if [ -L ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE} ]; then
return 0
elif [ "${pkgname}" != "base-files" ]; then
vmkdir usr/lib
ln -sf lib ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE}
fi
}