void-packages/common/hooks/post-install/98-lib32.sh

8 lines
142 B
Bash
Raw Normal View History

# This hook removes the /usr/lib32 symlink on x86.
hook() {
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
rm -f ${DESTDIR}/usr/lib32
fi
}