mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-10 00:53:51 +02:00
8 lines
168 B
Bash
8 lines
168 B
Bash
# This hook creates the /usr/lib32 symlink for x86.
|
|
|
|
hook() {
|
|
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
|
|
vmkdir usr/lib
|
|
ln -sf lib ${PKGDESTDIR}/usr/lib32
|
|
fi
|
|
}
|