Skip to content

Commit

Permalink
Some topics contain parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
HuidaeCho committed Jul 10, 2019
1 parent f79c356 commit 12d1d1e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/Make/Html.make
Expand Up @@ -8,7 +8,7 @@ $(HTMLDIR)/%.html: %.html %.tmp.html $(HTMLSRC) $(IMGDST) | $(HTMLDIR)
$(PYTHON) $(GISBASE)/tools/mkhtml.py $* > $@

$(MANDIR)/%.$(MANSECT): $(HTMLDIR)/%.html
$(HTML2MAN) $< $@
$(HTML2MAN) "$<" "$@"

%.tmp.html: $(HTMLSRC)
if [ "$(HTMLSRC)" != "" ] ; then $(call htmldesc,$<,$@) ; fi
Expand Down
4 changes: 3 additions & 1 deletion man/Makefile
Expand Up @@ -47,8 +47,10 @@ default: $(DSTFILES)

# This must be a separate target so that evaluation of $(MANPAGES)
# is delayed until the indices have been generated
left := (
right := )
manpages:
$(MAKE) $(MANPAGES)
$(MAKE) $(subst $(left),\$(left),$(subst $(right),\$(right),$(MANPAGES)))

.PHONY: manpages

Expand Down

0 comments on commit 12d1d1e

Please sign in to comment.