projects
/
libcds.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d8957e1
)
Change single quotes to double quotes.
author
Mike Krinkin
<krinkin.m.u@gmail.com>
Fri, 10 Apr 2015 20:19:24 +0000
(23:19 +0300)
committer
Mike 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
patch
|
blob
|
history
diff --git
a/build/build.sh
b/build/build.sh
index 98a70ba72c8318010145557ae12546f097587aa2..31d67fcb8c7a8b5e04ed96b7757b032c6bf7b1d5 100644
(file)
--- 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