summaryrefslogtreecommitdiffstats
path: root/win/makefile.bc
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2015-03-23 10:44:09 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2015-03-23 10:44:09 (GMT)
commite376bb72e8ff45dbe2d1754b98b28b4dfa1015c1 (patch)
treec02883cb7a2d46e3bd913aac56ff68653c90e7cd /win/makefile.bc
parent591d3b2f266f160e601712752cf61255e00aaf9c (diff)
downloadtk-e376bb72e8ff45dbe2d1754b98b28b4dfa1015c1.zip
tk-e376bb72e8ff45dbe2d1754b98b28b4dfa1015c1.tar.gz
tk-e376bb72e8ff45dbe2d1754b98b28b4dfa1015c1.tar.bz2
Remove some unnecessary end-of-line spacing
Diffstat (limited to 'win/makefile.bc')
-rw-r--r--win/makefile.bc10
1 files changed, 5 insertions, 5 deletions
diff --git a/win/makefile.bc b/win/makefile.bc
index 934599c..a1b1032 100644
--- a/win/makefile.bc
+++ b/win/makefile.bc
@@ -3,7 +3,7 @@
# for Visual C++ that came with tk 8.3.3
#
# Some "not so obvious" details in this makefile are preceded by a comment
-# "maintenance hint", which tries to explain what's going on. Better to
+# "maintenance hint", which tries to explain what's going on. Better to
# leave those in place.
# Helmut Giese, July 2002
#
@@ -303,10 +303,10 @@ plugin: setup $(TKPLUGINDLL) $(WISHP)
tktest: setup $(TKTEST) $(CAT32)
# Maintenance hint: We want to set environment variables before calling tktest.
-# If we do this in the form of normal commands, they will not persist up to
+# If we do this in the form of normal commands, they will not persist up to
# the call of tktest. Therfore we put all commands wanted into a batch file.
# The normal way of using 'echo >x.bat' and 'echo >>x.bat' does not work here
-# because we cannot write '... > tktest.txt' this way. Hence this advanced
+# because we cannot write '... > tktest.txt' this way. Hence this advanced
# form of loop hopping:
# - Have MAKE produce a temporary file with the content we want.
# - Use it as input to the COPY command to produce a batch file.
@@ -314,7 +314,7 @@ tktest: setup $(TKTEST) $(CAT32)
#
test: setup $(TKTEST) $(TKLIB) $(CAT32)
copy &&!
- set TCL_LIBRARY=$(TCLDIR)/library
+ set TCL_LIBRARY=$(TCLDIR)/library
set PATH=$(TCLDIR)\win\$(TMPDIRNAME);$(PATH)
$(TKTEST) $(ROOT)/tests/all.tcl > tktest.txt
! _test.bat
@@ -367,7 +367,7 @@ install-libraries:
$(TKLIB): $(TKDLL) $(TKSTUBLIB)
-# Maintenance hint: The macro puts a '+-' before the first member of
+# Maintenance hint: The macro puts a '+-' before the first member of
# TKSTUBOBJS, than replaces any ' ' with ' +-' - together putting '+-' in
# front of any member of TKSTUBOBJS (provided, they are separated in their
# defintion by just one space).