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