]> gitweb.michael.orlitzky.com - shell.d.git/commitdiff
sage.sh: re-enable eclib in the sage build
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 2 Mar 2026 02:52:13 +0000 (21:52 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 2 Mar 2026 02:52:13 +0000 (21:52 -0500)
sage.sh

diff --git a/sage.sh b/sage.sh
index bca684b0c993675524c3bec55def68f161c2eab3..b1aa8223fb639527ad413f32a8240e29389a9adf 100644 (file)
--- 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 \
          "${@}"
 }