common/hooks/post-install/06-prepare-32bit.sh: ignore bootstrap pkgs.

This commit is contained in:
Juan RP 2014-03-17 11:45:54 +01:00
parent 9e02203bc8
commit e1f2d12a95

View file

@ -19,8 +19,8 @@ hook() {
if [ "$XBPS_TARGET_MACHINE" != "i686" ]; then
return
fi
# Ignore noarch pkgs.
if [ -n "$noarch" ]; then
# Ignore noarch and bootstrap pkgs.
if [ -n "$noarch" -o -n "$bootstrap" ]; then
return
fi
if [ -z "$lib32mode" ]; then