From 2ce9a8a7d5d30dd3ebbcb747ce52f2aa2553f66c Mon Sep 17 00:00:00 2001 From: Daniel Wagner Date: Thu, 13 Apr 2023 12:56:10 +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 24fa16e2..bafc0fe5 100644 --- a/meson.build +++ b/meson.build @@ -11,6 +11,7 @@ project( 'prefix=/usr/local', 'warning_level=1', 'sysconfdir=etc', + 'wrap_mode=nofallback', ] ) -- 2.50.1