diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | Doc/Makefile.in | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index cd6bc0138..e89bf3e75 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2008-02-22 Clint Adams <clint@zsh.org> + + * 24617: Doc/Makefile.in: add '.' to the yodl include path + for when files are passed as ../../Doc/*.yo. + 2008-02-27 Peter Stephenson <pws@csr.com> * 24611: Src/subst.c, Test/D04parameter.ztst: 23562 diff --git a/Doc/Makefile.in b/Doc/Makefile.in index 7bd7986f6..cfe7a6dde 100644 --- a/Doc/Makefile.in +++ b/Doc/Makefile.in @@ -122,8 +122,8 @@ zsh.info: $(sdir)/zsh.texi *) target=$(sdir)/$@ ;; \ esac; \ case '$(YODL)' in :*) touch $$target ;; *) \ - echo $(YODL) -o $$target -I$(sdir) -w zman.yo version.yo $< ; \ - $(YODL) -I$(sdir) -w zman.yo version.yo $< | \ + echo $(YODL) -o $$target -I$(sdir):. -w zman.yo version.yo $< ; \ + $(YODL) -I$(sdir):. -w zman.yo version.yo $< | \ sed -e '1s/\\-/-/g' -e '/^\.'\''/d' -e 's/\(\\fB\)*'\''/\1\\\&'\''/' > $$target \ ;; esac; \ |