common/hooks/post-install/06-prepare-32bit.sh: ignore bootstrap pkgs.
This commit is contained in:
parent
9e02203bc8
commit
e1f2d12a95
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue