8 lines
145 B
Bash
8 lines
145 B
Bash
# This hook removes the /usr/lib32 symlink on x86.
|
|
|
|
hook() {
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
|
rm -f ${PKGDESTDIR}/usr/lib32
|
|
fi
|
|
}
|