summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog6
-rw-r--r--Src/zsh.mdd8
2 files changed, 8 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 6ee6e4b79..50e9bdc09 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-01-13 Peter Stephenson <pws@csr.com>
+
+ * 26300: Src/zsh.mdd: don't use "echo -n" for $ZSH_PATCHLEVEL.
+
2009-01-09 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Doc/Zsh/compwid.yo: tweak doc for 26270.
@@ -10889,5 +10893,5 @@
*****************************************************
* This is used by the shell to define $ZSH_PATCHLEVEL
-* $Revision: 1.4503 $
+* $Revision: 1.4504 $
*****************************************************
diff --git a/Src/zsh.mdd b/Src/zsh.mdd
index 7fb991007..51e68fc7c 100644
--- a/Src/zsh.mdd
+++ b/Src/zsh.mdd
@@ -42,11 +42,9 @@ version.h: $(sdir_top)/Config/version.mk zshcurses.h zshterm.h
echo '#define ZSH_VERSION "'$(VERSION)'"' > $@
patchlevel.h: $(sdir_top)/ChangeLog
- { \
- echo -n "#define ZSH_PATCHLEVEL "; \
- sed -ne 's/^\* *\$$''Revision: \(.*\) ''\$$/"\1"/p' \
- $(sdir_top)/ChangeLog; \
- } >patchlevel.h
+ sed -ne \
+ 's/^\* *\$$''Revision: \(.*\) ''\$$/#define ZSH_PATCHLEVEL "\1"/p' \
+ $(sdir_top)/ChangeLog >patchlevel.h
zshcurses.h: ../config.h
@if test x$(ZSH_CURSES_H) != x; then \