sagemath/sagemath-readonly.patch
Jerry James 925e91dade Update to sagemath 8.2.
Also:
- Create the sagemath-data-combinatorial_designs subpackage.
- Create the sagemath-notebook-export subpackage.
- Unbundle the LaTeX makecmds style.
- Install LaTeX style files in a more canonical place.
2018-06-03 07:13:30 -06:00

16 lines
655 B
Diff

--- src/sage/all.py.orig 2018-05-05 16:21:22.000000000 -0600
+++ src/sage/all.py 2018-05-16 13:25:28.300415250 -0600
@@ -290,11 +290,11 @@ def _write_started_file():
Check that the file exists when Sage is running::
- sage: started_file = os.path.join(SAGE_LOCAL, 'etc', 'sage-started.txt')
+ sage: started_file = os.path.join(DOT_SAGE, 'sage-started.txt')
sage: os.path.isfile(started_file)
True
"""
- started_file = os.path.join(SAGE_LOCAL, 'etc', 'sage-started.txt')
+ started_file = os.path.join(DOT_SAGE, 'sage-started.txt')
# Current time with a resolution of 1 second
import datetime