xbps-src: install_pkg_with_binpkg(): fix bad quoting.

This commit is contained in:
Juan RP 2011-06-22 13:32:45 +02:00
parent 9163a2e18f
commit b41a474199

View file

@ -185,11 +185,9 @@ install_pkg()
#
install_pkg_with_binpkg()
{
local pkgpattern="$1"
msg_normal "'$pkgname': installing dependency '$pkgpattern'\n"
msg_normal "'$pkgname': installing dependency '$1'\n"
${fakeroot_cmd} ${fakeroot_cmd_args} ${XBPS_BIN_CMD} \
-Ay install \""$pkgpattern\""
-Ay install "$1"
return $?
}