From f741fd3bb162e64eee88fb92fc8204e750baa0ef Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 13 Apr 2023 12:41:31 +0200 Subject: [PATCH] build: Disable fallback on default meson's default setting for wrap mode is to attempt to download missing dependencies. Disable this feature as the community is unhappy with this default behavior. Signed-off-by: Daniel Wagner --- meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/meson.build b/meson.build index 007ffdc8..13c2e4c1 100644 --- a/meson.build +++ b/meson.build @@ -16,6 +16,7 @@ project( 'buildtype=debug', 'prefix=/usr/local', 'sysconfdir=etc', + 'wrap_mode=nofallback' ] ) -- 2.50.1