On ia64-Linux systems, GAP is known to have
problems unless compiled with -O0. See
http://www.gap-system.org/Faq/Hardware-OS/hardware-os8.html
So that SAGE does this, I suggest modifying
sage-2.4.1.1/spkg/standard/gap-4.4.9/spkg-install
so that
if [ $? =0 -o `uname -p` = "ia64" ]; then
becomes
if [ $? = 0 -o `uname -p` = "ia64" ]; then
In other words, add a space between the equal sign and the 0.
--
Kate Minola
University of Maryland, College Park
--~--~---------~--~----~------------~-------~--~----~
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-support
URLs: http://sage.math.washington.edu/sage/ and http://sage.scipy.org/sage/
-~----------~----~----~----~------~----~------~--~---