diff options
-rwxr-xr-x | src/scripts/ci/build.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scripts/ci/build.sh b/src/scripts/ci/build.sh index 2aa3e5458..5d88260d4 100755 --- a/src/scripts/ci/build.sh +++ b/src/scripts/ci/build.sh @@ -3,9 +3,9 @@ set -ev if [ "$BUILD_MODE" = "static" ]; then - CFG_FLAGS="--disable-shared --via-amalgamation" + CFG_FLAGS="--disable-shared --via-amalgamation" elif [ "$BUILD_MODE" = "shared" ]; then - CFG_FLAGS="--build-mode=shared" + CFG_FLAGS="" elif [ "$BUILD_MODE" = "coverage" ]; then # lcov gets confused by symlinks CFG_FLAGS="--build-mode=coverage --link-method=copy" |