diff options
author | Tanaka Akira <akr@users.sourceforge.net> | 2000-02-06 08:03:51 +0000 |
---|---|---|
committer | Tanaka Akira <akr@users.sourceforge.net> | 2000-02-06 08:03:51 +0000 |
commit | fc7f80040889343af98286c17e8a9ee3326fbdb8 (patch) | |
tree | d5403f48f8c6913c1a6bc6e49a273e87ec8689d6 /Doc/Makefile.in | |
parent | 445756c4c6035b1f279df3414e10dfbf6edbad8b (diff) | |
download | zsh-fc7f80040889343af98286c17e8a9ee3326fbdb8.tar.gz zsh-fc7f80040889343af98286c17e8a9ee3326fbdb8.tar.xz zsh-fc7f80040889343af98286c17e8a9ee3326fbdb8.zip |
zsh-workers/9585
Diffstat (limited to 'Doc/Makefile.in')
-rw-r--r-- | Doc/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Doc/Makefile.in b/Doc/Makefile.in index 471366680..db3048b79 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -180,14 +180,14 @@ Zsh/modlist.yo: $(MODDOCSRC) echo "enditem()"; \ echo "includefile(Zsh/modmenu.yo)"; \ set '' $(MODDOCSRC); \ - unset mod1 mod2 mod3 || true; \ + mod1= mod2= mod3=; \ test ".$$2" = . || \ mod2=`sed -n '1{s|^COMMENT(!MOD!||;p;q;}' < $(sdir)/$$2`; \ while test ".$$2" != .; do \ - unset mod3 || true; \ + mod3=; \ test ".$$3" = . || \ mod3=`sed -n '1{s|^COMMENT(!MOD!||;p;q;}' < $(sdir)/$$3`; \ - echo "texinode(The $$mod2 Module)($${mod3+The $$mod3 Module})($${mod1:+The $$mod1 Module})(Zsh Modules)"; \ + echo "texinode(The $$mod2 Module)($${mod3:+The $$mod3 Module})($${mod1:+The $$mod1 Module})(Zsh Modules)"; \ echo "sect(The $$mod2 Module)"; \ echo "includefile($${2})"; \ shift; \ |