summaryrefslogtreecommitdiff
path: root/aur
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-11-24 11:11:55 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-11-24 11:11:55 -0300
commitb4b5a1441b224299d529380f6b8e19ebd7393718 (patch)
tree485403ab2fcd881fb7056c72257d547f22123545 /aur
parent40fa0a4c04a34740b40c88a75b7ef1c816cda195 (diff)
parent73f4d0e6498dd590f0181ac8c1c2015d29ad168d (diff)
Merge branch 'master' into fauno
Diffstat (limited to 'aur')
-rwxr-xr-xaur4
1 files changed, 3 insertions, 1 deletions
diff --git a/aur b/aur
index 35783c5..ca7d587 100755
--- a/aur
+++ b/aur
@@ -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"