Change single quotes to double quotes.
authorMike Krinkin <krinkin.m.u@gmail.com>
Fri, 10 Apr 2015 20:19:24 +0000 (23:19 +0300)
committerMike Krinkin <krinkin.m.u@gmail.com>
Fri, 10 Apr 2015 20:19:24 +0000 (23:19 +0300)
Bash doesn't expand variables inside single quotes, so double
quotes are required here actually.

build/build.sh

index 98a70ba72c8318010145557ae12546f097587aa2..31d67fcb8c7a8b5e04ed96b7757b032c6bf7b1d5 100644 (file)
@@ -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