From af1c9863838d82257d1eac6ddfccf699e3c3c302 Mon Sep 17 00:00:00 2001 From: Andrea Scarpino Date: Wed, 19 Jun 2013 22:38:57 +0200 Subject: Respect paths with spaces on --install makepkg --install doesn't quote the absolute path, so if the path contains spaces pacman -U fails. Signed-off-by: Allan McRae --- scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 940e947d..02f5a02d 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -2089,7 +2089,7 @@ install_package() { fi done - if ! run_pacman -U ${pkglist[@]}; then + if ! run_pacman -U "${pkglist[@]}"; then warning "$(gettext "Failed to install built package(s).")" return 0 fi -- cgit v1.2.3-24-g4f1b