install_pkg_deps() may return 1 sometimes, do not treat it as fatal error.

This commit is contained in:
Juan RP 2010-05-10 12:18:41 +02:00
parent 2ee55de018
commit caf9d4ac62
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ install_pkg_deps()
# Iterate again, this will check if there are more
# required deps for current pkg.
#
install_pkg_deps $j $curpkg || return $?
install_pkg_deps $j $curpkg
prev_pkg="$j"
done