mirror of
https://github.com/void-linux/void-packages.git
synced 2025-05-25 17:23:50 +02:00
this resulted in empty i686 packages never getting flagged as empty since the /usr/lib32 -> lib symlink was only removed after the check
7 lines
145 B
Bash
7 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
|
|
}
|