From: Michael Orlitzky Date: Mon, 2 Mar 2026 02:52:13 +0000 (-0500) Subject: sage.sh: re-enable eclib in the sage build X-Git-Url: https://gitweb.michael.orlitzky.com/?a=commitdiff_plain;h=9fdf01db8a3c7b91a4b82ebe13fcef64935c4c4a;p=shell.d.git sage.sh: re-enable eclib in the sage build --- diff --git a/sage.sh b/sage.sh index bca684b..b1aa822 100644 --- a/sage.sh +++ b/sage.sh @@ -22,6 +22,8 @@ alias sage="python -m sage.cli" # # https://github.com/mesonbuild/meson-python/issues/820 # +# Re-enable eclib explicitly because I think it kills too many things +# to be optional without a huge refactoring. sage_meson_setup() { meson setup \ --python.bytecompile=-1 \ @@ -30,6 +32,7 @@ sage_meson_setup() { --wrap-mode=nofallback \ -Dbuild-docs=false \ -Dauto_features=disabled \ + -Declib=enabled \ "${@}" }