From dbe2f010a2ca370e605e36955b8579f9f6face94 Mon Sep 17 00:00:00 2001 From: FlightlessMango Date: Tue, 17 Jan 2023 15:20:16 +0100 Subject: [PATCH] Don't build mangoapp by default --- build.sh | 2 -- meson_options.txt | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 316bdb43..b6f5332a 100755 --- a/build.sh +++ b/build.sh @@ -198,7 +198,6 @@ uninstall() { rm -fv "/usr/share/vulkan/implicit_layer.d/MangoHud.x86_64.json" rm -fv "/usr/bin/mangohud" rm -fv "/usr/bin/mangohud.x86" - rm -fv "/usr/bin/mangoapp" } install() { @@ -238,7 +237,6 @@ install() { /usr/bin/install -Dvm644 ./build/release/usr/share/man/man1/mangohud.1 /usr/share/man/man1/mangohud.1 /usr/bin/install -Dvm644 ./build/release/usr/share/doc/mangohud/MangoHud.conf.example /usr/share/doc/mangohud/MangoHud.conf.example /usr/bin/install -vm755 ./build/release/usr/bin/mangohud /usr/bin/mangohud - /usr/bin/install -vm755 ./build/release/usr/bin/mangoapp /usr/bin/mangoapp ln -sv $DEFAULTLIB /usr/lib/mangohud/lib diff --git a/meson_options.txt b/meson_options.txt index ac97645a..4542cc2d 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -14,7 +14,7 @@ option('with_wayland', type : 'feature', value : 'disabled') option('with_dbus', type : 'feature', value : 'enabled') option('with_dlsym', type : 'feature', value : 'disabled') option('loglevel', type: 'combo', choices : ['trace', 'debug', 'info', 'warn', 'err', 'critical', 'off'], value : 'info', description: 'Max log level in non-debug build') -option('mangoapp', type: 'boolean', value : true) +option('mangoapp', type: 'boolean', value : false) option('mangoapp_32bit', type: 'boolean', value : false) option('mangohudctl', type: 'boolean', value : false) option('mangoapp_layer', type: 'boolean', value : false)