summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2012-07-08 08:40:28 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2012-07-08 08:40:28 (GMT)
commit358047d8059fb3a6df83cb7b13a192c3690ba198 (patch)
tree5c2a126058409adc7b88599994716a900ea52c3b
parent956d9e9ba0c48ea47db300d262cf9d5ac7eda3dc (diff)
downloadtk-358047d8059fb3a6df83cb7b13a192c3690ba198.zip
tk-358047d8059fb3a6df83cb7b13a192c3690ba198.tar.gz
tk-358047d8059fb3a6df83cb7b13a192c3690ba198.tar.bz2
don't forget to excape quotes
-rw-r--r--unix/Makefile.in2
-rw-r--r--win/Makefile.in2
2 files changed, 2 insertions, 2 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]";\
diff --git a/win/Makefile.in b/win/Makefile.in
index 46fb4dd..adfb20a 100644
--- a/win/Makefile.in
+++ b/win/Makefile.in
@@ -479,7 +479,7 @@ install-binaries: binaries
@(\
echo "if {[catch {package present Tcl 8.5.0}]} { 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]";\