diff options
author | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-03-07 23:07:36 +0100 |
---|---|---|
committer | Rafael G. Martins <rafael@rafaelmartins.eng.br> | 2016-03-07 23:07:36 +0100 |
commit | 99661b01b0dbf6a0ccb34574f599992e714ac726 (patch) | |
tree | 4d3ef3f5180fe68a3f4b12d3c90921bf2bdd102f | |
parent | 392b63f752103eed3febd68a49daf8a653ee5eba (diff) | |
download | blogc-99661b01b0dbf6a0ccb34574f599992e714ac726.tar.gz blogc-99661b01b0dbf6a0ccb34574f599992e714ac726.tar.bz2 blogc-99661b01b0dbf6a0ccb34574f599992e714ac726.zip |
travis: fix if statement in build script
-rwxr-xr-x | build-aux/build-travis.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-aux/build-travis.sh b/build-aux/build-travis.sh index d178495..eb6262a 100755 --- a/build-aux/build-travis.sh +++ b/build-aux/build-travis.sh @@ -7,7 +7,7 @@ mkdir -p build MAKE_TARGET="${TARGET}" -if test "x${TARGET}" = xw*; then +if [[ "x${TARGET}" = xw* ]]; then unset CC export CFLAGS="-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions --param=ssp-buffer-size=4" export CHOST="x86_64-w64-mingw32" |