diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2012-07-08 08:29:59 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2012-07-08 08:29:59 (GMT) |
commit | 334b024401edcfbc60d9a7617d02529e8ac8910b (patch) | |
tree | 258b909a8da7f8630be4b6a924d07658ff35f320 /unix | |
parent | e2422e928e42216e073e8bd6ccfec723b34372c8 (diff) | |
download | tk-334b024401edcfbc60d9a7617d02529e8ac8910b.zip tk-334b024401edcfbc60d9a7617d02529e8ac8910b.tar.gz tk-334b024401edcfbc60d9a7617d02529e8ac8910b.tar.bz2 |
use "in" operator in stead
FossilOrigin-Name: eb9e9f85409cda9bfdaf729a70f8f3e0c104b16b
Diffstat (limited to 'unix')
-rw-r--r-- | unix/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 08192b9..7dc543d 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -727,7 +727,7 @@ install-binaries: $(TK_LIB_FILE) $(TK_STUB_LIB_FILE) ${WISH_EXE} echo "package ifneeded Tk $(MAJOR_VERSION).$(MINOR_VERSION)$(PATCH_LEVEL) [list load [file join \$$dir $${relative}$(TK_LIB_FILE)] Tk]";\ else \ 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 $(MAJOR_VERSION).$(MINOR_VERSION)$(PATCH_LEVEL) [list load [file join \$$dir $${relative}.. bin $(TK_LIB_FILE)] Tk]";\ echo "} else {";\ echo " package ifneeded Tk $(MAJOR_VERSION).$(MINOR_VERSION)$(PATCH_LEVEL) [list load [file join \$$dir $${relative}.. bin tk${MAJOR_VERSION}${MINOR_VERSION}.dll] Tk]";\ |