diff options
author | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-11-24 11:11:55 -0300 |
---|---|---|
committer | Nicolas Reynolds <fauno@kiwwwi.com.ar> | 2011-11-24 11:11:55 -0300 |
commit | b4b5a1441b224299d529380f6b8e19ebd7393718 (patch) | |
tree | 485403ab2fcd881fb7056c72257d547f22123545 /aur | |
parent | 40fa0a4c04a34740b40c88a75b7ef1c816cda195 (diff) | |
parent | 73f4d0e6498dd590f0181ac8c1c2015d29ad168d (diff) |
Merge branch 'master' into fauno
Diffstat (limited to 'aur')
-rwxr-xr-x | aur | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -76,9 +76,11 @@ for _pkg in ${@}; do fi for _dep in ${depends[@]} ${makedepends[@]}; do + _dep=${_dep/[<>=]*/} if ! is_built $_dep; then if ! find ${ABSROOT} -maxdepth 2 -type d -name "$_dep" | egrep "*" >/dev/null ; then - missing_deps=(${missing_deps} $_dep) + msg2 "$_dep will be get from AUR" + missing_deps+=($_dep) fi else msg2 "$_dep is on repos" |