diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:40:28 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:40:28 (GMT) |
commit | 358047d8059fb3a6df83cb7b13a192c3690ba198 (patch) | |
tree | 5c2a126058409adc7b88599994716a900ea52c3b /unix/Makefile.in | |
parent | 956d9e9ba0c48ea47db300d262cf9d5ac7eda3dc (diff) | |
download | tk-358047d8059fb3a6df83cb7b13a192c3690ba198.zip tk-358047d8059fb3a6df83cb7b13a192c3690ba198.tar.gz tk-358047d8059fb3a6df83cb7b13a192c3690ba198.tar.bz2 |
don't forget to excape quotes
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 7dc543d..9c8082b 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] && ("-display" in \$$::argv)))} {";\ + 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]";\ |