Commit c3a1ecd0 authored by Vitaly Lipatov's avatar Vitaly Lipatov

drop -32bit on SUSE/15

parent 810f9473
...@@ -48,11 +48,15 @@ add_32bit_requires() ...@@ -48,11 +48,15 @@ add_32bit_requires()
echo "$i" echo "$i"
done | xargs -n 1000 echo done | xargs -n 1000 echo
elif [ "$DISTRNAME" = "SUSE" ] || [ "$DISTRNAME" = "SLED" ] || [ "$DISTRNAME" = "SLES" ]; then elif [ "$DISTRNAME" = "SUSE" ] || [ "$DISTRNAME" = "SLED" ] || [ "$DISTRNAME" = "SLES" ]; then
# i386 on SUSE or SLED : # add -32bit to all lib packages if [ $DISTRVERSION != "42" ] && ! version_more_version $DISTRVERSION 15 ; then
for i in $* ; do # i386 on SUSE or SLED : # add -32bit to all lib packages
rhas "$GREP" "^lib" && ! rhas "$i" "-32bit$" && echo "$i-32bit" && continue for i in $* ; do
echo "$i" rhas "$GREP" "^lib" && ! rhas "$i" "-32bit$" && ! rhas "$i" "-devel$" && echo "$i-32bit" && continue
done | xargs -n 1000 echo echo "$i"
done | xargs -n 1000 echo
else
echo "$@"
fi
else else
echo "$@" echo "$@"
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment