#9522: MPIR: Don't check SAGE_CHECK in spkg-install
------------------------+---------------------------------------------------
Reporter: mpatel | Owner: tbd
Type: defect | Status: new
Priority: minor | Milestone: sage-4.5.1
Component: packages | Keywords:
Author: | Upstream: N/A
Reviewer: | Merged:
Work_issues: |
------------------------+---------------------------------------------------
From the end of MPIR's `spkg-install`:
{{{
#!sh
if [ "$SAGE_CHECK" = "yes" ]; then
cd ..; ./spkg-check
fi
}}}
We should remove this, since `SAGE_LOCAL/bin/sage-spkg` already does this
check:
{{{
#!sh
cd $BASEDIR
if [ "$SAGE_CHECK" != "" -a -f spkg-check ]; then
echo "Running the test suite."
chmod +x spkg-check
./spkg-check
if [ $? -ne 0 ]; then
}}}
--
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9522>
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.