diff options
author | Brent Cook <bcook@openbsd.org> | 2015-09-09 06:40:05 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-09-09 06:40:05 -0500 |
commit | 2728a86590a5b82152b497a991613b2f48657995 (patch) | |
tree | d50d2fec7ba1dd42730667a765b7e7fb06f80eba /scripts | |
parent | 5de4c4f0eb9bdcc1dbdadc4aafb4cc89083835a0 (diff) | |
download | portable-2728a86590a5b82152b497a991613b2f48657995.tar.gz portable-2728a86590a5b82152b497a991613b2f48657995.tar.bz2 portable-2728a86590a5b82152b497a991613b2f48657995.zip |
travis' cmake does not support ninja, use make
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/travis b/scripts/travis index 82375cf..58a1dfb 100755 --- a/scripts/travis +++ b/scripts/travis | |||
@@ -21,8 +21,8 @@ if [ "x$ARCH" = "xnative" ]; then | |||
21 | # test cmake and ninja | 21 | # test cmake and ninja |
22 | mkdir build | 22 | mkdir build |
23 | cd build | 23 | cd build |
24 | cmake -GNinja .. | 24 | cmake .. |
25 | ninja | 25 | make |
26 | else | 26 | else |
27 | CPU=i686 | 27 | CPU=i686 |
28 | if [ "x$ARCH" = "xmingw64" ]; then | 28 | if [ "x$ARCH" = "xmingw64" ]; then |