Skip to content

Commit

Permalink
make: fix make doc error
Browse files Browse the repository at this point in the history
This seems to fix issue #5941
Certain make version(?) will parse the ')' as function end when not
inside "" but ''.

Changelog-None
  • Loading branch information
m-schmoock authored and rustyrussell committed Feb 1, 2023
1 parent a9eb17a commit dcb9b4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ doc/index.rst: $(MANPAGES:=.md)
@$(call VERBOSE, "genidx $@", \
find doc -maxdepth 1 -name '*\.[0-9]\.md' | \
cut -b 5- | LC_ALL=C sort | \
sed 's/\(.*\)\.\(.*\).*\.md/\1 <\1.\2.md>/' | \
sed "s/\(.*\)\.\(.*\).*\.md/\1 <\1.\2.md>/" | \
python3 devtools/blockreplace.py doc/index.rst manpages --language=rst --indent " " \
)

Expand Down

0 comments on commit dcb9b4b

Please sign in to comment.