diff options
author | jan.nijtmans <jan.nijtmans@noemail.net> | 2012-07-08 08:41:04 (GMT) |
---|---|---|
committer | jan.nijtmans <jan.nijtmans@noemail.net> | 2012-07-08 08:41:04 (GMT) |
commit | e884fdf12324342e9ebf69c70bf97b0e7b93e80c (patch) | |
tree | 4b5086d00530db452984afd6828a1d1af4145368 /unix | |
parent | 2158e0a766f786b1d29de78a3cd349d3679e2075 (diff) | |
parent | 465e1aa430a168edcfbc01f3d8674f255370e76a (diff) | |
download | tk-e884fdf12324342e9ebf69c70bf97b0e7b93e80c.zip tk-e884fdf12324342e9ebf69c70bf97b0e7b93e80c.tar.gz tk-e884fdf12324342e9ebf69c70bf97b0e7b93e80c.tar.bz2 |
don't forget to escape quotes
FossilOrigin-Name: 2f95fd1eab863b06315ae37e162495be54dfe2a3
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 b88001d..366805a 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -734,7 +734,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]";\ |