Commit cfb4a0e5 authored by Vitaly Lipatov's avatar Vitaly Lipatov

repl: use .x86_64-i586 repl files for wine packages

parent edf339a2
......@@ -190,7 +190,12 @@ print_replbased_list()
{
local REPLBASE="$1"
if [ "$BUILDARCH" = "x86_64" ] ; then
internal_repl_list $REPLBASE .x86_64 | uniq
# FIXME: wine hack, use external replacement package list
if rhas "$BUILDNAME" wine ; then
internal_repl_list $REPLBASE .x86_64-i586 | uniq
else
internal_repl_list $REPLBASE .x86_64 | uniq
fi
fi
# general rules listing
......
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