xbps-src: really fix previous.

This commit is contained in:
Juan RP 2011-06-22 21:06:14 +02:00
parent 46fee555ec
commit 8419094808
2 changed files with 2 additions and 2 deletions

View file

@ -151,7 +151,7 @@ install_dependencies_pkg()
if [ -n "$XBPS_PREFER_BINPKG_DEPS" ]; then
msg_normal "'$pkgname-${lver}': installing dependencies from binpkgs...\n"
for i in ${notinstalled_deps}; do
install_pkg_with_binpkg "\"${i}\""
install_pkg_with_binpkg "${i}"
done
rval=$?
if [ $rval -eq 255 ]; then

View file

@ -187,7 +187,7 @@ install_pkg_with_binpkg()
{
msg_normal "'$pkgname': installing dependency '$1'\n"
${fakeroot_cmd} ${fakeroot_cmd_args} ${XBPS_BIN_CMD} \
-Ay install "$1"
-Ay install "\"${1}\""
return $?
}