diff options
author | Joshua Ismael Haase Hernandez <hahj87@gmail.com> | 2011-05-30 11:50:58 -0500 |
---|---|---|
committer | Joshua Ismael Haase Hernandez <hahj87@gmail.com> | 2011-05-30 11:50:58 -0500 |
commit | 876db1b485e846f23c796b01f69ba2d61abafbdb (patch) | |
tree | 82faa5db698b8351118effaa9294291cf98265c4 | |
parent | 02bbeaecbd43e7d327700f895fb8625a1bc6ed5e (diff) |
* grep on find_deps corrected
-rwxr-xr-x | fullpkg-ng | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -158,7 +158,7 @@ function find_deps { # if search pkgname in repo doesn't work # this should find pkgsplits _dir=$(find "$ABSROOT/${_repo}" -type f -name PKGBUILD -print0 | \ - "xargs" -0 -e grep -H -Ew grep $_dep >/dev/null 2>&1) && { + "xargs" -0 -e grep -H -Ew $_dep >/dev/null 2>&1) && { pushd $(dirname $(echo $_dir | cut -d: -f1)) > /dev/null $0 -c -d ${build_dir} -l ${next_level} # Circular deps must fail |