xbps-src: fix bad quoting when installing from binpkgs.

This commit is contained in:
Juan RP 2011-06-22 20:55:06 +02:00
parent be928a49ea
commit 46fee555ec

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