Commit 2855d1c3 authored by Vitaly Lipatov's avatar Vitaly Lipatov

drop arch suffix adding (we can't distinct between arch/noarch)

parent 755ba86f
......@@ -608,7 +608,8 @@ epm_install()
# to be filter happy
warmup_lowbase
local names="$(echo $pkg_names | exp_with_arch_suffix | filter_out_installed_packages)"
local names="$(echo $pkg_names | filter_out_installed_packages)"
#local names="$(echo $pkg_names | exp_with_arch_suffix | filter_out_installed_packages)"
local files="$(echo $pkg_files | filter_out_installed_packages)"
# can be empty only after skip installed
......
......@@ -256,7 +256,8 @@ epm_remove()
pkg_files=''
[ -n "$pkg_names" ] || fatal "Remove: missing package(s) name."
pkg_names="$(echo $pkg_names | exp_with_arch_suffix)"
# TODO: remove only according current arch (if x86_64)
#pkg_names="$(echo $pkg_names | exp_with_arch_suffix)"
if [ -n "$dryrun" ] ; then
info "Packages for removing:"
......
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