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 | 6e3155d279cf28581344bfd172fa4ad96b372f0a (patch) | |
tree | 5c2a126058409adc7b88599994716a900ea52c3b /unix/Makefile.in | |
parent | 7c58bae5a0957ef7a7d3301292d2385d749ccbcb (diff) | |
download | tk-6e3155d279cf28581344bfd172fa4ad96b372f0a.zip tk-6e3155d279cf28581344bfd172fa4ad96b372f0a.tar.gz tk-6e3155d279cf28581344bfd172fa4ad96b372f0a.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]";\ |