diff options
author | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2023-02-19 14:16:28 +0100 |
---|---|---|
committer | Lucía Andrea Illanes Albornoz <lucia@luciaillanes.de> | 2023-02-19 14:16:28 +0100 |
commit | 4b1007106488bc46d8e68ffeab1c84eb27bd6d86 (patch) | |
tree | 72cdd78a5ff364a4ef01c1ec4dd569a1bd655cb7 | |
parent | 8d7a8a599612a3bdcda7c3860a688511df9ea0a4 (diff) | |
download | midipix_build-4b1007106488bc46d8e68ffeab1c84eb27bd6d86.tar.bz2 midipix_build-4b1007106488bc46d8e68ffeab1c84eb27bd6d86.tar.xz |
subr.ex/ex_pkg.subr:ex_pkg_check_depends(): speed up by testing for finish state w/ solely ex_pkg_state_test2().
-rw-r--r-- | subr.ex/ex_pkg.subr | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/subr.ex/ex_pkg.subr b/subr.ex/ex_pkg.subr index eb735b62..c66c5ca2 100644 --- a/subr.ex/ex_pkg.subr +++ b/subr.ex/ex_pkg.subr @@ -34,7 +34,6 @@ ex_pkg_check_depends() { for _epcd_pkg_name_depend in ${_epcd_depends}; do if ! rtl_lmatch "${_epcd_rpkg_disabled}" "${_epcd_pkg_name_depend}"\ - && ! rtl_lmatch "${_epcd_rpkg_finished}" "${_epcd_pkg_name_depend}"\ && ! ex_pkg_state_test2 "${_epcd_workdir}" "${_epcd_pkg_name_depend}" finish; then if ! rtl_lmatch "${_epcd_rpkg_names}" "${_epcd_pkg_name_depend}"; then |