diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2010-04-15 15:53:28 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-04-15 15:53:28 +0000 |
commit | 064c0fac8ecca76547de9e41bd2426a84a082a8c (patch) | |
tree | ceeac0a385d0ac3197ed1791c4bd99727242c108 | |
parent | a0c0ae76e3a223886154bcd2eb4c0e84853e1c36 (diff) | |
download | abuild-064c0fac8ecca76547de9e41bd2426a84a082a8c.tar.gz abuild-064c0fac8ecca76547de9e41bd2426a84a082a8c.tar.bz2 abuild-064c0fac8ecca76547de9e41bd2426a84a082a8c.tar.xz abuild-064c0fac8ecca76547de9e41bd2426a84a082a8c.zip |
abuild: only trace dependencies from current repo
This avoids confusion when abuild picks dependencies from testing
when building main.
-rwxr-xr-x | abuild.in | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -721,8 +721,8 @@ up2date() { depparse_aports() { # lets run this in a subshell since we source all APKBUILD here ( - aportsdir=$(realpath ${APKBUILD%/APKBUILD}/../..) - for i in $aportsdir/*/*/APKBUILD; do + aportsdir=$(realpath ${APKBUILD%/APKBUILD}/..) + for i in $aportsdir/*/APKBUILD; do pkgname= subpackages= depends= |