From: Michael Orlitzky Date: Mon, 2 Mar 2026 17:16:38 +0000 (-0500) Subject: sage.sh: nofallback -> nodownload X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=c4074b6f6f2eb5f22d039ece15f057a0a0fc144c;p=shell.d.git sage.sh: nofallback -> nodownload --- 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 \