diff options
author | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-07-08 08:29:59 (GMT) |
---|---|---|
committer | nijtmans@users.sourceforge.net <jan.nijtmans> | 2012-07-08 08:29:59 (GMT) |
commit | 121a5628d512cc28bdf18985890a8eea0fd1175d (patch) | |
tree | 258b909a8da7f8630be4b6a924d07658ff35f320 /unix/Makefile.in | |
parent | 471312aa2d8a1851dc8d9dc8c49f4360a36af5fc (diff) | |
download | tk-121a5628d512cc28bdf18985890a8eea0fd1175d.zip tk-121a5628d512cc28bdf18985890a8eea0fd1175d.tar.gz tk-121a5628d512cc28bdf18985890a8eea0fd1175d.tar.bz2 |
use "in" operator in stead
Diffstat (limited to 'unix/Makefile.in')
-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]";\ |