#9475: update M4RI to newest upstream release
-------------------------------+--------------------------------------------
Reporter: malb | Owner: tbd
Type: enhancement | Status: needs_work
Priority: major | Milestone: sage-4.5
Component: packages | Keywords: M4RI, spkg-check
Author: Martin Albrecht | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
-------------------------------+--------------------------------------------
Comment(by leif):
Shame on me I missed that one:
{{{
#!sh
./spkg-install: line 47: [x: command not found
}}}
{{{
#!sh
if ["x$SAGE_FAT_BINARY" = "xyes"]; then
SSE2_SUPPORT="--disable-sse2"
else
SSE2_SUPPORT=""
fi
}}}
should be
{{{
#!sh
if [ "x$SAGE_FAT_BINARY" = "xyes" ]; then
...
}}}
Note that {{{[}}} is actually a ''command'' (namely an alias for or link
to {{{test}}}, depending on the shell), and {{{]}}} is its last parameter.
----
On both of the above systems, the testsuite passed without errors.
(I reinstalled the package(s) with {{{SAGE_CHECK="yes"}}}.)
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9475#comment:11>
Sage <http://www.sagemath.org>
Sage: Creating a Viable Open Source Alternative to Magma, Maple, Mathematica,
and MATLAB
--
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.