Commit 593138b8 authored by Vitaly Lipatov's avatar Vitaly Lipatov

drop biarch 32bit on real 32bit

parent 7cb4a82f
......@@ -72,7 +72,8 @@ print_tmp_sourceslist()
if [ "$DEFAULTARCH" = "x86_64" ] ; then
cat "$SLIST" | sed -e "s|i586|$DEFAULTARCH|g"
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
}
......
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