diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2015-02-05 14:40:36 +0100 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2015-02-05 14:40:36 +0100 |
commit | 1bd0dbdbe726869971d2507c48ca4123fc7d9f71 (patch) | |
tree | e4d0ba739bbc707fc61bdf7864a613d1930251fc /.travis.yml | |
parent | 1a97d05a679ab10f854ae49ff246cd963893b380 (diff) | |
download | ATCD-1bd0dbdbe726869971d2507c48ca4123fc7d9f71.tar.gz |
Fixed if statements
* .travis.yml:
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 50a88505630..9239f818707 100644 --- a/.travis.yml +++ b/.travis.yml @@ -16,8 +16,8 @@ before_install: before_script: - export - echo -e "#include \"ace/config-linux.h\"" >> $ACE_ROOT/ace/config.h - - if [ "$CXX" == "g++" ]; then echo -e "include \$(ACE_ROOT)/include/makeinclude/platform_linux.GNU" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU - - if [ "$CXX" == "clang++" ]; then echo -e "include \$(ACE_ROOT)/include/makeinclude/platform_linux_clang.GNU" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU + - if [ "$CXX" == "g++" ]; then echo -e "include \$(ACE_ROOT)/include/makeinclude/platform_linux.GNU" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU; fi + - if [ "$CXX" == "clang++" ]; then echo -e "include \$(ACE_ROOT)/include/makeinclude/platform_linux_clang.GNU" >> $ACE_ROOT/include/makeinclude/platform_macros.GNU; fi script: - perl $ACE_ROOT/bin/mwc.pl -type gnuace -workers 2 |