summaryrefslogtreecommitdiff
path: root/aur
diff options
context:
space:
mode:
authorJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-11-28 02:48:39 -0600
committerJoshua Ismael Haase Hernández <hahj87@gmail.com>2011-11-28 02:48:39 -0600
commitbcb8f2ab77a59d572d2a62217c2ac1fb683a581e (patch)
treedf815a6af59e630df8ec21b152217e0efc731ff4 /aur
parentd899caa8de20db4b4fca9d74b5f1c077d8008ccc (diff)
parent73f4d0e6498dd590f0181ac8c1c2015d29ad168d (diff)
Merge branch 'master' of gitpar:libretools
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"