Skip to content
This repository has been archived by the owner on Jun 26, 2024. It is now read-only.

Commit

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

Changelog-None
  • Loading branch information
m-schmoock authored and gkrizek committed Apr 26, 2023
1 parent 5ee3839 commit 84c29b9
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 84c29b9

Please sign in to comment.