#9274: do some cleanup of the deps file, as suggested by Carl Hansen
----------------------+-----------------------------------------------------
   Reporter:  was     |       Owner:  GeorgSWeber
       Type:  defect  |      Status:  new        
   Priority:  major   |   Milestone:  sage-4.4.4 
  Component:  build   |    Keywords:             
     Author:          |    Upstream:  N/A        
   Reviewer:          |      Merged:             
Work_issues:          |  
----------------------+-----------------------------------------------------
 {{{

 Here is an excerpt from "deps" , the makefile in spkg/standard

 $(INST)/$(FORTRAN):
        $(SAGE_SPKG) $(FORTRAN) 2>&1

 $(INST)/$(F2C): $(INST)/$(FORTRAN)
        $(SAGE_SPKG) $(INST)/$(F2C) 2>&1
                     ^^^^^^^ --------------------Notice that this is
 wrong.
                                               the INST is not needed
 and is wrong.
 $(INST)/$(PIL): $(INST)/$(PYTHON)
        $(SAGE_SPKG) $(PIL) 2>&1


 The only reason it works is that the script that reads it cleans it up
 with
 "basename".

 But that's imperfect.


 There are 3 instances, shown in this diff:


 401c400
 <       $(SAGE_SPKG) $(F2C) 2>&1
 ---
 >       $(SAGE_SPKG) $(INST)/$(F2C) 2>&1
 413c412
 <       $(SAGE_SPKG) $(LAPACK) 2>&1
 ---
 >       $(SAGE_SPKG) $(INST)/$(LAPACK) 2>&1
 416c415
 <       $(SAGE_SPKG) $(BLAS) 2>&1
 ---
 >       $(SAGE_SPKG) $(INST)/$(BLAS) 2>&1




 Also in deps there are references to   TWISTEDWEB2  but that doesn't
 seem to exist anymore.


 I do not write access to the code. I hope someone who does will take
 this
 and do right thing with it.

 ************************************************
 carlhansen1234
 }}}

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