Commit a34ecfb9 authored by Vitaly Lipatov's avatar Vitaly Lipatov

drop biarch 32bit on real 32bit

parent 0a74613b
...@@ -72,7 +72,8 @@ print_tmp_sourceslist() ...@@ -72,7 +72,8 @@ print_tmp_sourceslist()
if [ "$DEFAULTARCH" = "x86_64" ] ; then if [ "$DEFAULTARCH" = "x86_64" ] ; then
cat "$SLIST" | sed -e "s|i586|$DEFAULTARCH|g" cat "$SLIST" | sed -e "s|i586|$DEFAULTARCH|g"
else else
cat "$SLIST" | sed -e "s|x86_64|$DEFAULTARCH|g" # Note: drop biarch 32bit on real 32bit
cat "$SLIST" | sed -e "s|x86_64|$DEFAULTARCH|g" | grep -v "x86_32"
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