summaryrefslogtreecommitdiff
path: root/.travis.yml
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2015-02-05 14:40:36 +0100
committerJohnny Willemsen <jwillemsen@remedy.nl>2015-02-05 14:40:36 +0100
commit1bd0dbdbe726869971d2507c48ca4123fc7d9f71 (patch)
treee4d0ba739bbc707fc61bdf7864a613d1930251fc /.travis.yml
parent1a97d05a679ab10f854ae49ff246cd963893b380 (diff)
downloadATCD-1bd0dbdbe726869971d2507c48ca4123fc7d9f71.tar.gz
Fixed if statements
* .travis.yml:
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml4
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