fe68ba81d2
This "un-breaks" sage while also updating it to 8.0. It compiles sage with its dependencies as one big pile, which is not the best approach but definately better than nothing for now. To be able to shrink the huge output pile a little, it also splits docs from the rest of the output.
22 lines
587 B
Diff
22 lines
587 B
Diff
diff --git a/src/bin/sage-env b/src/bin/sage-env
|
|
index ead308f861..ed8db9f9b7 100644
|
|
--- a/src/bin/sage-env
|
|
+++ b/src/bin/sage-env
|
|
@@ -111,6 +111,8 @@ resolvelinks() {
|
|
}
|
|
|
|
|
|
+SAGE_ROOT="@out@/sage-root"
|
|
+
|
|
# New value for SAGE_ROOT: either SAGE_ROOT (if given)
|
|
# or a guessed value based on pwd.
|
|
if [ -n "$SAGE_ROOT" ]; then
|
|
@@ -185,6 +187,8 @@ fi
|
|
export SAGE_ENV_SOURCED=$SAGE_ENV_VERSION
|
|
|
|
export SAGE_ROOT="$NEW_SAGE_ROOT"
|
|
+export SAGE_LOCAL='@out@/'
|
|
+export PYTHONPATH="@out@/lib/python2.7/site-packages:$PYTHONPATH"
|
|
|
|
|
|
# sage-env must know where the Sage's script files are.
|