diff options
author | andreas_kupries <akupries@shaw.ca> | 2007-09-12 17:10:36 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2007-09-12 17:10:36 (GMT) |
commit | 1733b54ed4d16d94de156fa0a6083fda7f2825f7 (patch) | |
tree | 527aa5d209ea36df97c31bb7cec7d29c557dfab1 /win/makefile.vc | |
parent | cec014145c4587f8ae14e52119b6abdcc460f4d9 (diff) | |
download | tk-1733b54ed4d16d94de156fa0a6083fda7f2825f7.zip tk-1733b54ed4d16d94de156fa0a6083fda7f2825f7.tar.gz tk-1733b54ed4d16d94de156fa0a6083fda7f2825f7.tar.bz2 |
* win/Makefile.in (install-binaries): Fixed missing brace in the
* win/makefile.vc (install-binaries): generated package index file.
Note: unix/Makefile.in is good.
Diffstat (limited to 'win/makefile.vc')
-rw-r--r-- | win/makefile.vc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/makefile.vc b/win/makefile.vc index c3bca2a..e458adf 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -12,7 +12,7 @@ # Copyright (c) 2001-2004 David Gravereaux. # #------------------------------------------------------------------------------ -# RCS: @(#) $Id: makefile.vc,v 1.104 2007/09/11 17:46:42 dgp Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.105 2007/09/12 17:10:39 andreas_kupries Exp $ #------------------------------------------------------------------------------ # Check to see we are configured to build with MSVC (MSDEVDIR or MSVCDIR) @@ -963,7 +963,7 @@ install-binaries: !if !$(STATIC_BUILD) @echo creating package index @type << > $(OUT_DIR)\pkgIndex.tcl -if {[catch {package present Tcl $(TCL_DOTVERSION)$(TCL_PATCHLEVEL)]} { return } +if {[catch {package present Tcl $(TCL_DOTVERSION)$(TCL_PATCHLEVEL)}]} { return } package ifneeded Tk $(DOTVERSION)$(TCL_PATCHLEVEL) [list load [file join $$dir .. .. bin $(TKLIBNAME)] Tk] << @$(CPY) $(OUT_DIR)\pkgIndex.tcl "$(SCRIPT_INSTALL_DIR)\" |