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 | |
parent | 785f4b624986d207f4c1763b7bb807fbe82a2c1f (diff) | |
parent | 6e3155d279cf28581344bfd172fa4ad96b372f0a (diff) | |
download | tk-e81b3e379034e1e6eb711c04117dc61a1fa564ca.zip tk-e81b3e379034e1e6eb711c04117dc61a1fa564ca.tar.gz tk-e81b3e379034e1e6eb711c04117dc61a1fa564ca.tar.bz2 |
don't forget to escape quotes
-rw-r--r-- | unix/Makefile.in | 2 | ||||
-rw-r--r-- | win/Makefile.in | 2 |
2 files changed, 2 insertions, 2 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]";\ diff --git a/win/Makefile.in b/win/Makefile.in index 7788da9..08bb2c3 100644 --- a/win/Makefile.in +++ b/win/Makefile.in @@ -480,7 +480,7 @@ install-binaries: binaries @(\ echo "if {[catch {package present Tcl $(TCLVERSION)$(TCLPATCHL)}]} return";\ 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 $(VERSION)$(PATCH_LEVEL) [list load [file join \$$dir .. .. bin libtk$(VERSION).dll] Tk]";\ echo "} else {";\ echo " package ifneeded Tk $(VERSION)$(PATCH_LEVEL) [list load [file join \$$dir .. .. bin $(TK_DLL_FILE)] Tk]";\ |