diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-14 12:37:37 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-14 12:37:37 (GMT) |
commit | baf779aa43c3ddcfe6eeb86d673f2ea9840214f9 (patch) | |
tree | 2f63472c20130ce426ec18749125642ed65ca784 /win | |
parent | 5d931b46f49af1ef0dc9beacedf5477ad2e2c4e9 (diff) | |
download | tk-baf779aa43c3ddcfe6eeb86d673f2ea9840214f9.zip tk-baf779aa43c3ddcfe6eeb86d673f2ea9840214f9.tar.gz tk-baf779aa43c3ddcfe6eeb86d673f2ea9840214f9.tar.bz2 |
Fix [881c87c2a9]: package require Tk error in revised_text (which was on trunk too ...)
Diffstat (limited to 'win')
-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 0c139b4..49297e1 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -735,13 +735,13 @@ install-binaries: if {![package vsatisfies [package provide Tcl] 8.6-]} return
if {($$::tcl_platform(platform) eq "unix") && ([info exists ::env(DISPLAY)]
|| ([info exists ::argv] && ("-display" in $$::argv)))} {
- if {![package vsatisfies [package provide Tcl] 9.0]} {
+ if {[package vsatisfies [package provide Tcl] 9.0]} {
package ifneeded tk $(TK_PATCH_LEVEL) [list load [file normalize [file join $$dir .. .. bin libtcl9tk$(DOTVERSION).dll]]]
} else {
package ifneeded tk $(TK_PATCH_LEVEL) [list load [file normalize [file join $$dir .. .. bin libtk$(DOTVERSION).dll]]]
}
} else {
- if {![package vsatisfies [package provide Tcl] 9.0]} {
+ if {[package vsatisfies [package provide Tcl] 9.0]} {
package ifneeded tk $(TK_PATCH_LEVEL) [list load [file normalize [file join $$dir .. .. bin $(TKLIBNAME9)]]]
} else {
package ifneeded tk $(TK_PATCH_LEVEL) [list load [file normalize [file join $$dir .. .. bin $(TKLIBNAME8)]]]
|