2019-12-14 23:40:22 +00:00
|
|
|
# This hook removes the /usr/lib32 symlink on 32-bit systems.
|
2014-04-05 09:52:22 +00:00
|
|
|
|
|
|
|
hook() {
|
2019-12-14 23:40:22 +00:00
|
|
|
if [ "$XBPS_TARGET_WORDSIZE" = "32" ] && \
|
|
|
|
[ "${pkgname}" != "base-files" ]; then
|
2015-01-14 13:22:18 +00:00
|
|
|
rm -f ${PKGDESTDIR}/usr/lib32
|
2014-04-05 09:52:22 +00:00
|
|
|
fi
|
|
|
|
}
|