diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:30:32 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:30:32 (GMT) |
commit | 785f4b624986d207f4c1763b7bb807fbe82a2c1f (patch) | |
tree | 6ddc548cb99fa1fdee70390dd5ae41e2dc225cfd /win | |
parent | 36eb1fcc42c8ad41e070467e6e935eff105b73ab (diff) | |
parent | 7c58bae5a0957ef7a7d3301292d2385d749ccbcb (diff) | |
download | tk-785f4b624986d207f4c1763b7bb807fbe82a2c1f.zip tk-785f4b624986d207f4c1763b7bb807fbe82a2c1f.tar.gz tk-785f4b624986d207f4c1763b7bb807fbe82a2c1f.tar.bz2 |
use "in" operator in stead
Diffstat (limited to 'win')
-rw-r--r-- | win/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/Makefile.in b/win/Makefile.in index 9ffa737..7788da9 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -480,7 +480,7 @@ install-binaries: binaries @(\ echo "if {[catch {package present Tcl $(TCLVERSION)$(TCLPATCHL)}]} return";\ echo "if {(\$$::tcl_platform(platform) eq \"unix\") && ([info exists ::env(DISPLAY)]";\ - echo " || ([info exists ::argv] && [lsearch -exact \$$::argv -display] > -1))} {";\ + echo " || ([info exists ::argv] && ("-display" in \$$::argv)))} {";\ echo " package ifneeded Tk $(VERSION)$(PATCH_LEVEL) [list load [file join \$$dir .. .. bin libtk$(VERSION).dll] Tk]";\ echo "} else {";\ echo " package ifneeded Tk $(VERSION)$(PATCH_LEVEL) [list load [file join \$$dir .. .. bin $(TK_DLL_FILE)] Tk]";\ |