diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:29:59 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:29:59 (GMT) |
commit | 7c58bae5a0957ef7a7d3301292d2385d749ccbcb (patch) | |
tree | 258b909a8da7f8630be4b6a924d07658ff35f320 /win/Makefile.in | |
parent | fd30222557d14ec07608457f8dbd41a6b2e2b0d8 (diff) | |
download | tk-7c58bae5a0957ef7a7d3301292d2385d749ccbcb.zip tk-7c58bae5a0957ef7a7d3301292d2385d749ccbcb.tar.gz tk-7c58bae5a0957ef7a7d3301292d2385d749ccbcb.tar.bz2 |
use "in" operator in stead
Diffstat (limited to 'win/Makefile.in')
-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 1f92ebb..46fb4dd 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -479,7 +479,7 @@ install-binaries: binaries @(\ echo "if {[catch {package present Tcl 8.5.0}]} { 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]";\ |