summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Baumann <mail@andreasbaumann.cc>2017-04-25 17:35:13 +0200
committerAndreas Baumann <mail@andreasbaumann.cc>2017-04-25 17:35:13 +0200
commit02acbb18805b1496bf5d2cc935d03502a5cf3e61 (patch)
tree5af382c2955146d7abd5a729b6e903c5fa9c85e5
parent8266109953e01663ab828b1fbd77932c975b1ca9 (diff)
downloadcssh-02acbb18805b1496bf5d2cc935d03502a5cf3e61.tar.gz
cssh-02acbb18805b1496bf5d2cc935d03502a5cf3e61.tar.bz2
more Travis fixes
-rw-r--r--dist/travis/script.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/dist/travis/script.sh b/dist/travis/script.sh
index 7d3871b..5f0d5e4 100644
--- a/dist/travis/script.sh
+++ b/dist/travis/script.sh
@@ -29,8 +29,8 @@ case $OS in
mkdir build
cd build
cmake \
- -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_CXX_FLAGS=-g -G 'Unix Makefiles' \
+ -DCMAKE_BUILD_TYPE=Release \
+ -G 'Unix Makefiles' \
..
make VERBOSE=1
make VERBOSE=1 test
@@ -44,8 +44,8 @@ case $OS in
mkdir build
cd build
cmake \
- -DCMAKE_INSTALL_PREFIX=/usr/local -DCMAKE_BUILD_TYPE=Release \
- -DCMAKE_CXX_FLAGS=-g -G Xcode \
+ -DCMAKE_BUILD_TYPE=Release \
+ -G Xcode \
..
xcodebuild -configuration Release -target ALL_BUILD
xcodebuild -configuration Release -target RUN_TESTS