Commit 4dfaedb7 authored by Vitaly Lipatov's avatar Vitaly Lipatov

epm-play: remove old __list_all_app at all

parent dcec79a3
...@@ -61,7 +61,9 @@ __get_app_package() ...@@ -61,7 +61,9 @@ __get_app_package()
__list_all_packages() __list_all_packages()
{ {
local name local name
for name in $(__list_all_app) ; do local arch="$SYSTEMARCH"
for name in $(__get_fast_short_list_app $arch) ; do
__get_app_package $name __get_app_package $name
done done
} }
...@@ -97,7 +99,8 @@ __list_app_packages_table() ...@@ -97,7 +99,8 @@ __list_app_packages_table()
__list_app_packages_table_old() __list_app_packages_table_old()
{ {
local name local name
for name in $(__list_all_app) ; do local arch="$SYSTEMARCH"
for name in $(__get_fast_short_list_app $arch) ; do
local pkg local pkg
for pkg in $(__get_app_package $name) ; do for pkg in $(__get_app_package $name) ; do
echo "$pkg $name" echo "$pkg $name"
......
...@@ -31,19 +31,6 @@ __run_script() ...@@ -31,19 +31,6 @@ __run_script()
} }
__list_all_app()
{
cd $psdir || fatal
for i in *.sh ; do
local name=${i/.sh/}
[ -n "$IGNOREi586" ] && startwith "$name" "i586-" && continue
startwith "$name" "common" && continue
echo "$name"
done
cd - >/dev/null
}
# args: script, host arch # args: script, host arch
__get_app_description() __get_app_description()
{ {
......
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