From d032405c789946f8752aba678ebb31a7c101f5a9 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Mon, 8 Jun 2020 16:12:39 +0200 Subject: [PATCH] Fix stupid typo in readme and GitHub Actions build --- .github/workflows/build.yml | 4 ++-- README.md | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6858803a..8af38df4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,7 +51,7 @@ jobs: # Statically link to libstdc++ on Ubuntu 18.04 as we're compiling # with a newer version of g++ than what's in the default repos - meson setup --buildtype=release --cross-file cross-wine.conf -Dwith-static-boost=true -Dwidth-bitbridge=true -Dcpp_link_args='-static-libstdc++' -Dbuild.cpp_link_args='-static-libstdc++' build + meson setup --buildtype=release --cross-file cross-wine.conf -Dwith-static-boost=true -Dwith-bitbridge=true -Dcpp_link_args='-static-libstdc++' -Dbuild.cpp_link_args='-static-libstdc++' build ninja -C build - name: Create an archive for the binaries run: | @@ -91,7 +91,7 @@ jobs: mkdir -p /tmp/prefix export WINEPREFIX=/tmp/prefix - meson setup --buildtype=release --cross-file cross-wine.conf -Dwith-static-boost=true -Dwidth-bitbridge=true build + meson setup --buildtype=release --cross-file cross-wine.conf -Dwith-static-boost=true -Dwith-bitbridge=true build ninja -C build - name: Create an archive for the binaries run: | diff --git a/README.md b/README.md index be77ddd6..359dab3c 100644 --- a/README.md +++ b/README.md @@ -336,9 +336,9 @@ bit versions of the Boost and XCB libraries. This can then be set up as follows: ```shell # Enable the bitbridge on an existing build -meson configure build -Dwidth-bitbridge=true +meson configure build -Dwith-bitbridge=true # Or configure a new build from scratch -meson setup --buildtype=release --cross-file cross-wine.conf -Dwidth-bitbridge=true build +meson setup --buildtype=release --cross-file cross-wine.conf -Dwith-bitbridge=true build ninja -C build ``` @@ -401,5 +401,5 @@ Other desktop environments and window managers will require some slight modifications in `src/plugin/plugin-bridge.cpp`. To enable this, simply run: ```shell -meson configure build --buildtype=debug -Dwidth-winedbg=true +meson configure build --buildtype=debug -Dwith-winedbg=true ```