You are viewing a plain text version of this content. The canonical link for it is here.
Posted to rivet-dev@tcl.apache.org by da...@apache.org on 2003/04/08 04:59:04 UTC

cvs commit: tcl-rivet/src make.tcl

davidw      2003/04/07 19:59:04

  Modified:    .        ChangeLog
               src      make.tcl
  Log:
  * src/make.tcl: Make sure that auto_path gets extra stuff at the
    beginning, so as not to create problems when using it to fetch the
    prefix.
  
  Revision  Changes    Path
  1.108     +4 -0      tcl-rivet/ChangeLog
  
  Index: ChangeLog
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/ChangeLog,v
  retrieving revision 1.107
  retrieving revision 1.108
  diff -u -r1.107 -r1.108
  --- ChangeLog	8 Apr 2003 02:43:47 -0000	1.107
  +++ ChangeLog	8 Apr 2003 02:59:04 -0000	1.108
  @@ -1,5 +1,9 @@
   2003-04-07  David N. Welton  <da...@dedasys.com>
   
  +	* src/make.tcl: Make sure that auto_path gets extra stuff at the
  + 	  beginning, so as not to create problems when using it to fetch
  +	  the prefix.
  +
   	* VERSION: Bump point number for new release.
   
   	* src/make.tcl: Use package require to load aardvark.
  
  
  
  1.35      +2 -2      tcl-rivet/src/make.tcl
  
  Index: make.tcl
  ===================================================================
  RCS file: /home/cvs/tcl-rivet/src/make.tcl,v
  retrieving revision 1.34
  retrieving revision 1.35
  diff -u -r1.34 -r1.35
  --- make.tcl	8 Apr 2003 02:28:06 -0000	1.34
  +++ make.tcl	8 Apr 2003 02:59:04 -0000	1.35
  @@ -6,7 +6,7 @@
   #
   # This file is responsible for the top-level "make" style processing.
   
  -set auto_path "$auto_path [file join [file dirname [info script]] buildscripts]"
  +set auto_path "[file join [file dirname [info script]] buildscripts] $auto_path"
   package require aardvark
   
   foreach script {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: rivet-cvs-unsubscribe@tcl.apache.org
For additional commands, e-mail: rivet-cvs-help@tcl.apache.org