Compare commits

...

1 Commits

Author SHA1 Message Date
Stefan Schmidt c9e4c06678 CI: disable cxx bindings on native bootstrap build for mingw
This has been enabled in commit 5894d384f2
by accident when we enabled it on other builds again. We do not need it
for the mingw cross setup and should keep this build minimal and fast.

Spotted by Marcel Hollerbach.
2020-05-28 10:01:18 +02:00
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
#!/bin/sh
mkdir build-bootstrap-native
meson --prefix=/usr/ --libdir=/usr/lib -Dbuild-examples=false -Dbuild-tests=false -Dbindings=cxx build-bootstrap-native
meson --prefix=/usr/ --libdir=/usr/lib -Dbuild-examples=false -Dbuild-tests=false -Dbindings= build-bootstrap-native
ninja -C build-bootstrap-native install
rm -rf build-bootstrap-native
ldconfig