From: Mike Krinkin Date: Fri, 10 Apr 2015 20:19:24 +0000 (+0300) Subject: Change single quotes to double quotes. X-Git-Tag: v2.1.0~260^2^2~1 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=f837f50f16bf2616ae50e0f04d9cecf72e8bbf7d;p=libcds.git Change single quotes to double quotes. Bash doesn't expand variables inside single quotes, so double quotes are required here actually. --- 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