#7781: Update prereq to version 0.6
------------------------+---------------------------------------------------
   Reporter:  drkirkby  |       Owner:  GeorgSWeber                     
       Type:  defect    |      Status:  needs_review                    
   Priority:  major     |   Milestone:  sage-4.3.1                      
  Component:  build     |    Keywords:  gcc AIX HP-UX IRIX Tru64 Solaris
Work_issues:            |      Author:  David Kirkby                    
   Upstream:  N/A       |    Reviewer:                                  
     Merged:            |  
------------------------+---------------------------------------------------

Comment(by mvngu):

 In the file `prereq-0.6-install`: For portability, line 151
 {{{
 if [ `uname` = "Darwin" -a "$SAGE64" = "yes" ]; then
 }}}
 could be replaced with
 {{{
 if [ `uname` = "Darwin" ] && [ "$SAGE64" = "yes" ]; then
 }}}
 From line 356 onward, the following section appears twice:
 {{{
 if [ `uname` = "HP-UX" ] ||  [ `uname` = "AIX" ] ||   [ `uname` = "Tru64"
 ] ; then
    if [ -z "`tar --version 2>&1 | grep GNU`" ] ; then
        echo ""
        echo "You must use the GNU version of tar on `uname` Please"
        echo "ensure that a GNU version of tar is first in your path"
        exit 1
    fi
 fi

 if [ `uname` = "IRIX" ] ||  [ `uname` = "IRIX64" ] ; then
    if [ -z "`tar --version 2>&1 | grep GNU`" ] ; then
        echo ""
        echo "You must use the GNU version of tar on IRIX. Please"
        echo "ensure that a GNU version of tar is first in your path"
        exit 1
    fi
 fi
 }}}

-- 
Ticket URL: <http://trac.sagemath.org/sage_trac/ticket/7781#comment:3>
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