]> gitweb.michael.orlitzky.com - bash.d.git/commitdiff
sage.sh: disable doc building by default.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 28 Mar 2022 12:47:37 +0000 (08:47 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 28 Mar 2022 12:47:37 +0000 (08:47 -0400)
sage.sh

diff --git a/sage.sh b/sage.sh
index 8efd95dbb2a4eb76381abaf75e38239d46b9077b..77e7e6a9224edaf8d474ad0d1ba38bde3da63f3a 100644 (file)
--- a/sage.sh
+++ b/sage.sh
@@ -14,15 +14,20 @@ export SAGE_DEBUG=no
 #   * --enable-download-from-upstream-url: needed when adding new SPKGs
 #   * --disable-r: I don't really use R
 #   * --disable-cvxopt: I don't really use cvxopt
+#   * --disable-notebook: self-explanatory
+#   * --disable-doc: when I'm building sage just to use it, I don't want
+#                    to double the build time to get the HTML docs.
+#                    Override with "sage-configure --enable-doc".
 #   * --with-system-foo=force: ensure that the system packages I have
 #                              installed are actually used.
 #
 sage-configure() {
   ./configure \
     --enable-download-from-upstream-url \
-    --disable-r \
     --disable-cvxopt \
+    --disable-doc \
     --disable-notebook \
+    --disable-r \
     --with-system-arb=force \
     --with-system-boost_cropped=force \
     --with-system-brial=force \