#4500: [with patch, needs review] cython files missing from build directory
after
install
------------------------+---------------------------------------------------
Reporter: craigcitro | Owner: craigcitro
Type: defect | Status: assigned
Priority: blocker | Milestone: sage-3.2
Component: build | Resolution:
Keywords: |
------------------------+---------------------------------------------------
Comment (by mabshoff):
This patch fixes the issue for me:
{{{
diff -r c543000d6447 setup.py
--- a/setup.py Thu Nov 13 05:32:07 2008 -0800
+++ b/setup.py Thu Nov 13 09:43:33 2008 -0800
@@ -241,7 +241,10 @@
Look up the last modified time of a file, with caching.
"""
if filename not in self._timestamps:
- self._timestamps[filename] = os.path.getmtime(filename)
+ try:
+ self._timestamps[filename] = os.path.getmtime(filename)
+ except:
+ self._timestamps[filename] = 0
return self._timestamps[filename]
def parse_deps(self, filename, verify=True):
}}}
I would guess this is more a #4480 issue, but since I started on this
ticket and I want to merge both of them I will mention it here.
Cheers,
Michael
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/4500#comment:13>
Sage <http://sagemath.org/>
Sage - Open Source Mathematical Software: Building the Car Instead of
Reinventing the Wheel
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"sage-trac" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/sage-trac?hl=en
-~----------~----~----~----~------~----~------~--~---