From c4074b6f6f2eb5f22d039ece15f057a0a0fc144c Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Mon, 2 Mar 2026 12:16:38 -0500 Subject: [PATCH] sage.sh: nofallback -> nodownload --- sage.sh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/sage.sh b/sage.sh index b1aa822..28797e7 100644 --- a/sage.sh +++ b/sage.sh @@ -14,8 +14,9 @@ alias sage="python -m sage.cli" # A "meson setup" command that disables all of the optional features, # including the documentation, and sets up a prefix-based install that -# won't use any vendored dependencies. Does not include the trailing -# build directory. +# won't use any vendored dependencies (nodownload is stronger than +# nofallback, see mesonbuild/wrap/__init__.py in the meson +# source). Does not include the trailing build directory. # # Byte-compilation is disabled for now because it causes a 20x slowdown # in the edit-compile loop: @@ -29,7 +30,7 @@ sage_meson_setup() { --python.bytecompile=-1 \ --python.install-env=prefix \ --prefix="${HOME}/.local" \ - --wrap-mode=nofallback \ + --wrap-mode=nodownload \ -Dbuild-docs=false \ -Dauto_features=disabled \ -Declib=enabled \ -- 2.51.0