From 50e9543908817940792cd9a590c42aed5230c311 Mon Sep 17 00:00:00 2001 From: Maxime Arthaud Date: Sat, 21 Dec 2013 10:12:53 +1000 Subject: makepkg: fix check for distcc Signed-off-by: Allan McRae --- scripts/makepkg.sh.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/makepkg.sh.in b/scripts/makepkg.sh.in index 81354dfe..0896a9c0 100644 --- a/scripts/makepkg.sh.in +++ b/scripts/makepkg.sh.in @@ -2340,7 +2340,7 @@ check_software() { fi # distcc - compilation with distcc - if check_buildenv "distcc" "y" && ! check_option "distcc" "n" ]]; then + if check_buildenv "distcc" "y" && ! check_option "distcc" "n"; then if ! type -p distcc >/dev/null; then error "$(gettext "Cannot find the %s binary required for distributed compilation.")" "distcc" ret=1 -- cgit v1.2.3-24-g4f1b