Skip to content

Commit

Permalink
upstream: use enabled/disabled instead of true/false for features
Browse files Browse the repository at this point in the history
  • Loading branch information
mrc0mmand committed Jan 9, 2024
1 parent f8cc3a0 commit 9a3abfa
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion agent/bootstrap-alt.sh
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ fi
-Dtests=unsafe \
-Dinstall-tests=true \
-Ddbuspolicydir=/etc/dbus-1/system.d \
-Dman=false \
-Dman=disabled \
-Db_sanitize=address,undefined \
-Db_lundef=false # See https://github.com/mesonbuild/meson/issues/764
ninja -C "$BUILD_DIR"
Expand Down
4 changes: 2 additions & 2 deletions agent/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -208,8 +208,8 @@ fi
-Dtests=unsafe \
-Dinstall-tests=true \
-Ddbuspolicydir=/etc/dbus-1/system.d \
-Dman=true \
-Dhtml=true
-Dman=enabled \
-Dhtml=enabled
ninja -C "$BUILD_DIR"
) 2>&1 | tee "$LOGDIR/build.log"

Expand Down
2 changes: 1 addition & 1 deletion vagrant/bootstrap_scripts/arch-sanitizers-clang.sh
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ meson setup "$BUILD_DIR" \
-Dinstall-tests=true \
-Ddbuspolicydir=/usr/share/dbus-1/system.d \
-Dlocalegen-path=/usr/bin/locale-gen \
-Dman=false \
-Dman=disabled \
-Db_sanitize=address,undefined \
-Db_lundef=false # See https://github.com/mesonbuild/meson/issues/764
ninja -C "$BUILD_DIR"
Expand Down
2 changes: 1 addition & 1 deletion vagrant/bootstrap_scripts/arch-sanitizers-gcc.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ meson setup "$BUILD_DIR" \
-Dinstall-tests=true \
-Ddbuspolicydir=/usr/share/dbus-1/system.d \
-Dlocalegen-path=/usr/bin/locale-gen \
-Dman=false \
-Dman=disabled \
-Db_sanitize=address,undefined
ninja -C "$BUILD_DIR"

Expand Down
4 changes: 2 additions & 2 deletions vagrant/bootstrap_scripts/arch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ meson setup "$BUILD_DIR" \
-Ddbuspolicydir=/usr/share/dbus-1/system.d \
-Dlocalegen-path=/usr/bin/locale-gen \
$(grep -q default-network meson_options.txt && echo -Ddefault-network=true) \
-Dman=true \
-Dhtml=true
-Dman=enabled \
-Dhtml=enabled
ninja -C "$BUILD_DIR"
ninja -C "$BUILD_DIR" install

Expand Down

0 comments on commit 9a3abfa

Please sign in to comment.