We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c960625 commit 34b6bfdCopy full SHA for 34b6bfd
initial-install.sh
@@ -13,7 +13,7 @@ autoreconf -fiv
13
14
# then look at the configure options:
15
# ./configure --help
16
-if [ $1 = "-g" ]; then
+if [ "$1" = "-g" ]; then
17
./configure --with-pic --disable-system-pcre --enable-utf8 \
18
CFLAGS='-g -O2 -fPIC -DPIC' \
19
CXXFLAGS='-g -O2 -fPIC -DPIC -std=c++0x' \
@@ -41,7 +41,7 @@ cd ../..
41
42
# then you have makefiles and the source can be compiled :)
43
# building in parallel mode (use -j<JOBS>)
44
45
make \
46
CFLAGS='-g -O2 -fPIC -DPIC -Wno-uninitialized -Wno-narrowing' \
47
CXXFLAGS='-g -O2 -fPIC -DPIC -Wno-uninitialized -Wno-narrowing -std=c++0x' \
0 commit comments