From f837f50f16bf2616ae50e0f04d9cecf72e8bbf7d Mon Sep 17 00:00:00 2001 From: Mike Krinkin Date: Fri, 10 Apr 2015 23:19:24 +0300 Subject: [PATCH] Change single quotes to double quotes. Bash doesn't expand variables inside single quotes, so double quotes are required here actually. --- build/build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build/build.sh b/build/build.sh index 98a70ba7..31d67fcb 100644 --- a/build/build.sh +++ b/build/build.sh @@ -453,11 +453,11 @@ cxx_debug_options="-D_DEBUG -O0 -g $cxx_debug_options" cxx_release_options="-DNDEBUG $cxx_release_optimization $cxx_release_options" -if test 'x$BOOST_INCLUDE_PATH' != 'x'; then +if test "x$BOOST_INCLUDE_PATH" != "x"; then buildCXXflags="$buildCXXflags -I$BOOST_INCLUDE_PATH" fi -if test 'x$buildTestLDflags' = 'x'; then +if test "x$buildTestLDflags" = "x"; then buildTestLDflags=$buildLDflags fi -- 2.34.1