Commit d2a53362 authored by Vitaly Lipatov's avatar Vitaly Lipatov

functions/repl: add support for .i586 pkgrepls

parent bd17f7d0
......@@ -283,6 +283,9 @@ internal_repl_list()
#FINDPKGGREP="$FINDPKGVERS"
fi
echo $REPLBASE.$DISTRNAME$ARCHEXT
echo $REPLBASE.$DISTRNAME.$DISTRVERSION$ARCHEXT
if [ -n "$ARCHEXT" ] ; then
(
# sure we use our version firstly
......@@ -315,6 +318,8 @@ print_replbased_list()
else
internal_repl_list $REPLBASE .x86_64 | uniq
fi
elif [ "$BUILDARCH" = "i586" ] ; then
internal_repl_list $REPLBASE .i586 | uniq
elif [ "$BUILDARCH" = "aarch64" ] ; then
internal_repl_list $REPLBASE .aarch64 | uniq
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