diff options
author | Simon Warta <[email protected]> | 2017-01-02 23:34:49 +0100 |
---|---|---|
committer | Simon Warta <[email protected]> | 2017-01-03 00:14:20 +0100 |
commit | 0d697e8ce6b37efe6bf628222133e738b287ce01 (patch) | |
tree | de946ec38ebc5d643755c2f6e0987c9c7b56bec3 | |
parent | cfcc24e9d54a5b3c31de8b4a82e55f4ac55ecb82 (diff) |
travis script: split os and cpu flags for consistency
-rwxr-xr-x | src/scripts/ci/travis/build.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/scripts/ci/travis/build.sh b/src/scripts/ci/travis/build.sh index a27cde117..df80dd52e 100755 --- a/src/scripts/ci/travis/build.sh +++ b/src/scripts/ci/travis/build.sh @@ -107,7 +107,8 @@ if [ "${BUILD_MODE:0:6}" = "cross-" ]; then elif [ "$BUILD_MODE" = "cross-win32" ]; then CC_BIN=i686-w64-mingw32-g++ # No test prefix needed, PE executes as usual with Wine installed - CFG_FLAGS+=(--cpu=x86_32 --os=mingw --cc-abi-flags="-static" --disable-shared) + CFG_FLAGS+=(--os=mingw) + CFG_FLAGS+=(--cpu=x86_32 --cc-abi-flags="-static" --disable-shared) TEST_EXE=./botan-test.exe fi fi |