diff options
author | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-29 16:34:57 -0300 |
---|---|---|
committer | Nicolás Reynolds <fauno@kiwwwi.com.ar> | 2012-10-29 16:34:57 -0300 |
commit | 5863c70d969c4654e0ea99f7b68876bc4aa5770b (patch) | |
tree | 8fff220e646f8445a5eb79a9ba4f984787ebf1d0 | |
parent | bb356fb2f9de3991e4dfe04409d27d348f69ac66 (diff) |
Run is_built against pkgnames
When pkgbase isn't a valid pkgname, treepkg ended up deciding to build this
non-existant package, regardless of packages already built. This commit fixes
that by checking is_built against pkgnames instead.
-rwxr-xr-x | treepkg | 10 |
1 files changed, 6 insertions, 4 deletions
@@ -134,10 +134,12 @@ if ! ${BUILDNOW}; then touch "${BUILDORDER}" # If this package is already built quit silently - if is_built "${pkgbase}" "${fullver}"; then - add_order "ignore" - exit 0 - fi + for _pkg in ${pkgname[@]}; do + if is_built "${_pkg}" "${fullver}"; then + add_order "ignore" + exit 0 + fi + done # Ignore if already in build order egrep -q ";${pkgbase};" "${BUILDORDER}" && exit 0 |