You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by cu...@locus.apache.org on 2000/03/03 15:58:59 UTC

cvs commit: xml-xalan make.include2

curcuru     00/03/03 06:58:59

  Modified:    .        make.include2
  Log:
  Add . (dot, current dir) to end of EXTRA_CLASSPATH to fix 1.1.x compiler problems due to circular deps., thans to Sean Timm for pointing it out PR: SCUUABCD
  
  Revision  Changes    Path
  1.6       +2 -1      xml-xalan/make.include2
  
  Index: make.include2
  ===================================================================
  RCS file: /home/cvs/xml-xalan/make.include2,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- make.include2	1999/12/01 00:20:04	1.5
  +++ make.include2	2000/03/03 14:58:59	1.6
  @@ -11,7 +11,8 @@
   # Add other required dirs to the classpath
   XML4J_CLASSPATH := ..$(PATHSEP)..$(PATHSEP)xml-xerces$(PATHSEP)java$(PATHSEP)bin$(PATHSEP)xerces.jar
   BSF_CLASSPATH := ..$(PATHSEP)bsf.jar
  -EXTRA_CLASSPATH := $(XML4J_CLASSPATH)$(CLPATHSEP)$(BSF_CLASSPATH)$(CLPATHSEP)$(CLASSESDIR)$(CLPATHSEP)$(CLASSPATH)
  +# Add . (current dir) to end of classpath to help 1.1.x compilers find all the source files, thanks to Sean Timm
  +EXTRA_CLASSPATH := $(XML4J_CLASSPATH)$(CLPATHSEP)$(BSF_CLASSPATH)$(CLPATHSEP)$(CLASSESDIR)$(CLPATHSEP)$(CLASSPATH)$(CLPATHSEP).
   
   sincelast: $(SINCE_FILE)
   $(SINCE_FILE): $(SRCS)