diff options
Diffstat (limited to 'fullpkg-ng')
-rwxr-xr-x | fullpkg-ng | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -150,7 +150,7 @@ function find_deps { popd > /dev/null } && break 1 # found, go to next dep - # search pkgname in repo if that doesn't work + # 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 ) && { @@ -160,6 +160,7 @@ function find_deps { [ $? -eq 20 ] && return 20 popd > /dev/null } && break 1 # found, go to next dep + echo "dep_not_found:$_dep" >> $tempdir/log done done unset next_level dir @@ -278,7 +279,7 @@ while [ ${#build_packages[@]} -gt 0 ]; do $FULLBUILDCMD; r=$? case $r in 0) plain "The build was succesful." - source .INFO && [ -n $repo ] && librestage $repo || \ + source .INFO && [ -n $repo ] && librestage $repo || \ echo "unstaged:$(basename $PWD)" >> $build_dir/log echo "built:$(basename $PWD)" >> $build_dir/log cleanup "$(basename $PWD)" |