about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Stephenson <pws@users.sourceforge.net>2008-10-17 08:31:22 +0000
committerPeter Stephenson <pws@users.sourceforge.net>2008-10-17 08:31:22 +0000
commit52fba13e9baab656b8901ebf308197169eab8947 (patch)
treefc74a2b375317fd74951acfba5d6d0b0d40fcc04
parent3c248a0de485f42db15fc8af4f1ccec4cf583f62 (diff)
downloadzsh-52fba13e9baab656b8901ebf308197169eab8947.tar.gz
zsh-52fba13e9baab656b8901ebf308197169eab8947.tar.xz
zsh-52fba13e9baab656b8901ebf308197169eab8947.zip
Rocky: 25907: Makefile needs .exe to run zsh on Cygwin
-rw-r--r--ChangeLog5
-rw-r--r--Doc/Zsh/zle.yo2
-rw-r--r--Test/Makefile.in4
3 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2bded0120..5c19ad2f9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-10-17  Peter Stephenson  <pws@csr.com>
+
+	* Rocky: 25907: Test/Makefile.in: makefile needs .exe
+	extension to run zsh on Cygwin.
+
 2008-10-16  Peter Stephenson  <pws@csr.com>
 
 	* 25905: Src/math.c, Test/C01arith.ztst: fix and test doubled-hash
diff --git a/Doc/Zsh/zle.yo b/Doc/Zsh/zle.yo
index 57dd020eb..c949e58c6 100644
--- a/Doc/Zsh/zle.yo
+++ b/Doc/Zsh/zle.yo
@@ -2188,7 +2188,7 @@ tt(b) or tt(bl) selects black.  Some terminals may generate additional
 colours if the tt(bold) attribute is also present.
 
 On recent terminals and on systems with an up-to-date terminal database the
-number of colours supported may be tested by with the command `tt(echotc
+number of colours supported may be tested by the command `tt(echotc
 Co)'; if this succeeds, it indicates a limit on the number of colours which
 will be enforced by the line editor.  The number of colours is in any case
 limited to 256 (i.e. the range 0 to 255).
diff --git a/Test/Makefile.in b/Test/Makefile.in
index 5eeb716e2..f82516582 100644
--- a/Test/Makefile.in
+++ b/Test/Makefile.in
@@ -48,8 +48,8 @@ check test:
 	if ZTST_testlist="`for f in $(sdir)/$(TESTNUM)*.ztst; \
            do echo $$f; done`" \
 	 ZTST_srcdir="$(sdir)" \
-	 ZTST_exe=$(dir_top)/Src/zsh \
-	 $(dir_top)/Src/zsh +Z -f $(sdir)/runtests.zsh; then \
+	 ZTST_exe=$(dir_top)/Src/zsh@EXEEXT@ \
+	 $(dir_top)/Src/zsh@EXEEXT@ +Z -f $(sdir)/runtests.zsh; then \
 	 stat=0; \
 	else \
 	 stat=1; \