mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-10 09:03:50 +02:00
8 lines
197 B
Bash
8 lines
197 B
Bash
# This hook removes the /usr/lib32 symlink on 32-bit systems.
|
|
|
|
hook() {
|
|
if [ "$XBPS_TARGET_WORDSIZE" = "32" ] && \
|
|
[ "${pkgname}" != "base-files" ]; then
|
|
rm -f ${PKGDESTDIR}/usr/lib32
|
|
fi
|
|
}
|