void-packages/common/hooks/pre-install/00-lib32.sh
Juan RP 77451b1845 Use --libdir=/usr/lib32 on x86 and create/remove the symlink via hooks.
This is to make all pkgs that use ${configure_args} work without changes
to the templates on x86_64.
2014-04-05 11:52:22 +02:00

9 lines
165 B
Bash

# This hook creates the /usr/lib32 symlink for x86.
hook() {
if [ "$XBPS_TARGET_MACHINE" = "i686" ]; then
vmkdir usr/lib
ln -sf lib ${DESTDIR}/usr/lib32
fi
}