Commit b7c6e6e7 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-epm_install: install distro_info before eepm (on ALT)

parent 85f6cceb
......@@ -50,7 +50,13 @@ epm_epm_install() {
local pkglist="$*"
# install epm by default
[ -n "$pkglist" ] || pkglist="eepm"
if [ -z "$pkglist" ] ; then
if [ "$($DISTRVENDOR -s)" = "alt" ] ; then
pkglist="distro_info eepm"
else
pkglist="eepm"
fi
fi
case "$pkglist" in
--list*)
......
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