#9531: spkg-check for gsl does not cause an exit on errors.
--------------------------+-------------------------------------------------
   Reporter:  drkirkby    |       Owner:  drkirkby  
       Type:  defect      |      Status:  new       
   Priority:  major       |   Milestone:  sage-4.5.1
  Component:  spkg-check  |    Keywords:            
     Author:              |    Upstream:  N/A       
   Reviewer:              |      Merged:            
Work_issues:              |  
--------------------------+-------------------------------------------------
 The {{{spkg-check}}} file for [http://www.gnu.org/software/gsl/ GNU
 Scientific Library (GSL)] consists of:

 {{{
 #!/usr/bin/env bash

 cd src

 make check

 if [ $? -ne 0 ]; then
    echo "Error: make check for GSL failed"
 fi
 }}}

 so the Sage build does not exit if {{{make check}}} fails. This is in
 contrast to virtually all other {{{spkg-check}}} files, where they would
 have:

 {{{
 make check

 if [ $? -ne 0 ]; then
    echo "Error: make check for GSL failed"
    exit 1
 fi

 }}}

 The version of GSL in Sage happens to be almost 3 years old too.

 Dave

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/9531>
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.

Reply via email to