diff options
author | stanton <stanton> | 1999-05-26 02:39:12 (GMT) |
---|---|---|
committer | stanton <stanton> | 1999-05-26 02:39:12 (GMT) |
commit | 9b8d0c42d5220c0fe2e393876c547cc86592439b (patch) | |
tree | 6a66f8ba54718bd41d309a7ef93084725b4593de /tools | |
parent | 4ed003db1291b51e72d309951399b8fa96e23402 (diff) | |
download | tcl-9b8d0c42d5220c0fe2e393876c547cc86592439b.zip tcl-9b8d0c42d5220c0fe2e393876c547cc86592439b.tar.gz tcl-9b8d0c42d5220c0fe2e393876c547cc86592439b.tar.bz2 |
Merged changes from 1-3-b2 branch into mainline.
Diffstat (limited to 'tools')
-rw-r--r-- | tools/genWinImage.tcl | 8 | ||||
-rw-r--r-- | tools/tcl.wse.in | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/tools/genWinImage.tcl b/tools/genWinImage.tcl index cecca62..da7241e 100644 --- a/tools/genWinImage.tcl +++ b/tools/genWinImage.tcl @@ -5,7 +5,7 @@ # Copyright (c) 1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: genWinImage.tcl,v 1.3 1999/04/30 22:45:03 stanton Exp $ +# RCS: @(#) $Id: genWinImage.tcl,v 1.4 1999/05/26 02:39:13 stanton Exp $ # This file is insensitive to the directory from which it is invoked. @@ -116,6 +116,12 @@ proc genWinImage::generateInstallers {} { set __TCLBASEDIR__ [file native $tclBuildDir] set __TKBASEDIR__ [file native $tkBuildDir] set __WISE__ [file native [file join $toolsDir wise]] + + set f [open [file join $__TCLBASEDIR__ generic/tcl.h] r] + set s [read $f] + close $f + regexp {TCL_PATCH_LEVEL\s*\"([^\"]*)\"} $s dummy __TCL_PATCH_LEVEL__ + set f [open tcl.wse.in r] set s [read $f] close $f diff --git a/tools/tcl.wse.in b/tools/tcl.wse.in index 1703b73..8378667 100644 --- a/tools/tcl.wse.in +++ b/tools/tcl.wse.in @@ -46,7 +46,7 @@ item: Set Variable end
item: Set Variable
Variable=PATCHLEVEL
- Value=8.1
+ Value=${__TCL_PATCH_LEVEL__}
end
item: Set Variable
Variable=APPTITLE
|