tools/toolbox: Expose --reconfigure meson flag

It turns out that nowadays meson updates don't always require
a full wipe of an existing build dir, but `--reconfigure` is
often enough. So let's expose that flag as well.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/3187>
This commit is contained in:
Florian Müllner 2024-02-12 14:13:07 +01:00 committed by Marge Bot
parent c461f2d128
commit a27ba309dd

View File

@ -16,6 +16,7 @@ usage() {
-Dkey=val Option to pass to meson setup
--dist Run meson dist
--reconfigure Reconfigure the project
--wipe Wipe build directory and reconfigure
-h, --help Display this help
@ -50,6 +51,7 @@ TEMP=$(getopt \
--options 't:D:h' \
--longoptions 'toolbox:' \
--longoptions 'dist' \
--longoptions 'reconfigure' \
--longoptions 'wipe' \
--longoptions 'help' \
-- "$@") || die "Run $(basename $0) --help to see available options"
@ -71,6 +73,11 @@ while true; do
shift
;;
--reconfigure)
RECONFIGURE=--reconfigure
shift
;;
--wipe)
WIPE=--wipe
shift