From 6aad66cfc8172847094f587d1f045b546c91fe4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Wed, 17 Jun 2015 10:21:55 -0300 Subject: [PATCH] (qb) Fix CC/CXX conditional --- qb/qb.comp.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qb/qb.comp.sh b/qb/qb.comp.sh index f87d246b53..ce97fdf09c 100644 --- a/qb/qb.comp.sh +++ b/qb/qb.comp.sh @@ -24,7 +24,7 @@ rm -f "$TEMP_C" "$TEMP_EXE" cc_status='does not work' if [ "$cc_works" == '1' ]; then cc_status='works' -elif [ -z $CC ]; then +elif [ -z "$CC" ]; then cc_status='not found' fi @@ -55,7 +55,7 @@ rm -f "$TEMP_CXX" "$TEMP_EXE" cxx_status='does not work' if [ "$cxx_works" = '1' ]; then cxx_status='works' -elif [ -z $CXX ]; then +elif [ -z "$CXX" ]; then cxx_status='not found' fi