#10187: Update ecl and maxima
------------------------------------------+---------------------------------
   Reporter:  vbraun                      |       Owner:  tbd                   
                  
       Type:  defect                      |      Status:  needs_review          
                  
   Priority:  major                       |   Milestone:  sage-4.6.1            
                  
  Component:  packages                    |    Keywords:                        
                  
     Author:  Volker Braun, David Kirkby  |    Upstream:  Workaround found; Bug 
reported upstream.
   Reviewer:  Karl-Dieter Crisman         |      Merged:                        
                  
Work_issues:                              |  
------------------------------------------+---------------------------------

Comment(by leif):

 Replying to [comment:75 leif]:
 > Replying to [comment:73 vbraun]:
 > > I've updated the maxima spkg to address the quotes and the MAKE issue.
 For review purposes see the `maxima-5.22.1.patch`.
 >
 > Well, if you redefine `MAKE` rather than unsetting it, you should also
 use it... (i.e. call `$MAKE` instead of `make`).

 Of course you could also just do
 {{{
 #!diff
 diff --git a/spkg-install b/spkg-install
 --- a/spkg-install
 +++ b/spkg-install
 @@ -14,8 +14,6 @@

  cd src/

 -unset MAKE  # this can break things
 -
  check_error() {
      if [ $? -ne 0 ]; then
         echo "***********************************************************"
 @@ -35,13 +33,13 @@
     echo "you will not be able to see the output of the build"
     echo "as it occurs.  Don't worry, the build process did"
     echo "not hang."
 -   make >> "$CUR"/output.log  2>> "$CUR"/error.log
 +   $MAKE -j1 >> "$CUR"/output.log  2>> "$CUR"/error.log
  else
 -   make
 +   $MAKE -j1
  fi
  check_error "Failed to make Maxima."

 -make install
 +$MAKE -j1 install
  check_error "Failed to install Maxima."

  echo "creating wrapper script with disabled readline"
 }}}

 P.S.: Did anybody recently test where and if parallel Maxima builds or
 installs fail? Building it sequentially takes a fair amount of time...

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