diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | Doc/Makefile.in | 3 |
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index 1d28b4fdc..96cf0e9f8 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ 2014-02-02 Barton E. Schaefer <schaefer@zsh.org> + * 32338: Doc/Makefile.in: create Doc/help.txt as an empty file + when Util/helpfiles fails, so that the rest of the build does not + yeild a spurious error + * 32337: Src/params.c: initialize several special parameters to unset for better compatibility in emulation modes; for the same reason, remove the readonly flag from $_ diff --git a/Doc/Makefile.in b/Doc/Makefile.in index 50e210fcf..af0a2b5da 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -191,7 +191,8 @@ help.txt: zshbuiltins.1 @-rm -f $(sdir)/help.txt $(sdir)/help/* perl $(sdir_top)/Util/helpfiles \ $(sdir)/zshbuiltins.1 $(sdir)/help $(sdir)/help.txt \ - || { rm -f $(sdir)/help.txt $(sdir)/help/*; false; } + || rm -f $(sdir)/help.txt $(sdir)/help/* + touch $(sdir)/$@ $(MAN): zmacros.yo zman.yo |