Skip to content
Snippets Groups Projects
Commit 75f76703 authored by Michael Hanselmann's avatar Michael Hanselmann
Browse files

epydoc.conf: Avoid newlines, rebuild if necessary


Using $(strip …) ensures there won't be any newlines in the value.

Signed-off-by: default avatarMichael Hanselmann <hansmi@google.com>
Reviewed-by: default avatarIustin Pop <iustin@google.com>
parent 1e28e3b8
No related branches found
No related tags found
No related merge requests found
......@@ -649,8 +649,8 @@ man/%.8: man/%.8.in $(REPLACE_VARS_SED)
man/%.html: man/%.html.in $(REPLACE_VARS_SED)
sed -f $(REPLACE_VARS_SED) < $< > $@
epydoc.conf: epydoc.conf.in
sed -e 's#@MODULES@#$(lint_python_code)#g' < $< > $@
epydoc.conf: epydoc.conf.in Makefile
sed -e 's#@MODULES@#$(strip $(lint_python_code))#g' < $< > $@
vcs-version:
if test -d .git; then \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment