2020-12-21 18:16:05 +00:00
|
|
|
# This hook creates the wordsize specific libdir symlink.
|
|
|
|
|
|
|
|
hook() {
|
2021-02-07 23:47:45 +00:00
|
|
|
if [ -L ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE} ]; then
|
|
|
|
return 0
|
|
|
|
elif [ "${pkgname}" != "base-files" ]; then
|
2020-12-21 18:16:05 +00:00
|
|
|
vmkdir usr/lib
|
|
|
|
ln -sf lib ${PKGDESTDIR}/usr/lib${XBPS_TARGET_WORDSIZE}
|
|
|
|
fi
|
|
|
|
}
|