From b46f692c6501a1c4b97ff337f9c78bfb6e195b49 Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Wed, 8 Sep 2021 13:03:26 +0200 Subject: [PATCH] buildtypes/meson: disable fallback installation of submodules Latest & greatest meson solves dependencies automatically and installs missing packages on it's own ( mostly with git master branches ). This is opposing to bee build policy being dependent on current system state and not current internet state. bee is not npm. Changing --wrap-mode=auto to 'nofallback' --- buildtypes/meson.sh.in | 1 + 1 file changed, 1 insertion(+) diff --git a/buildtypes/meson.sh.in b/buildtypes/meson.sh.in index f1583b5..0849ea7 100644 --- a/buildtypes/meson.sh.in +++ b/buildtypes/meson.sh.in @@ -38,6 +38,7 @@ bee_configure() { --prefix ${PREFIX} \ --sysconfdir=${SYSCONFDIR} \ --localstatedir=${LOCALSTATEDIR} \ + --wrap-mode=nofallback \ "${@}" \ ${S} }