This repository has been archived on 2024-11-03. You can view files and clone it, but cannot push or open issues or pull requests.
|
# 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
|
|
}
|