diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:41:04 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2012-07-08 08:41:04 (GMT) |
commit | e81b3e379034e1e6eb711c04117dc61a1fa564ca (patch) | |
tree | 4b5086d00530db452984afd6828a1d1af4145368 /unix/Makefile.in | |
parent | 785f4b624986d207f4c1763b7bb807fbe82a2c1f (diff) | |
parent | 6e3155d279cf28581344bfd172fa4ad96b372f0a (diff) | |
download | tk-e81b3e379034e1e6eb711c04117dc61a1fa564ca.zip tk-e81b3e379034e1e6eb711c04117dc61a1fa564ca.tar.gz tk-e81b3e379034e1e6eb711c04117dc61a1fa564ca.tar.bz2 |
don't forget to escape 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 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]";\ |