summaryrefslogtreecommitdiff
path: root/Documentation/automake.mk
diff options
context:
space:
mode:
authorBen Pfaff <blp@ovn.org>2017-04-14 12:38:12 -0700
committerBen Pfaff <blp@ovn.org>2017-04-14 12:39:17 -0700
commit882072d77a2213c28555d39b95259980622cd8e6 (patch)
tree27896aa8734172288d2a2b4208042bba493d9a80 /Documentation/automake.mk
parentf654d6e4df5dd5b06fede3a66f68b0480d22ae8c (diff)
downloadopenvswitch-882072d77a2213c28555d39b95259980622cd8e6.tar.gz
doc: Avoid need to generate conf.py.
It's awkward to have to at the same time generate conf.py from conf.py.in and to keep both versions in the repository. This avoids the issue. Signed-off-by: Ben Pfaff <blp@ovn.org> Acked-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'Documentation/automake.mk')
-rw-r--r--Documentation/automake.mk10
1 files changed, 0 insertions, 10 deletions
diff --git a/Documentation/automake.mk b/Documentation/automake.mk
index ec60e0b1e..9911668c1 100644
--- a/Documentation/automake.mk
+++ b/Documentation/automake.mk
@@ -3,7 +3,6 @@ DOC_SOURCE = \
Documentation/_static/logo.png \
Documentation/_static/overview.png \
Documentation/conf.py \
- Documentation/conf.py.in \
Documentation/index.rst \
Documentation/contents.rst \
Documentation/intro/index.rst \
@@ -125,15 +124,6 @@ clean-docs:
rm -rf $(SPHINXBUILDDIR)/linkcheck
rm -f docs-check
CLEAN_LOCAL += clean-docs
-
-ALL_LOCAL += $(srcdir)/Documentation/conf.py
-$(srcdir)/Documentation/conf.py: $(srcdir)/Documentation/conf.py.in
- $(AM_V_GEN)($(ro_shell) && sed -e 's,[@]VERSION[@],$(VERSION),g' \
- -e 's,[@]OVS_MAJOR[@],$(shell echo $(VERSION) | cut -f1 -d.),g' \
- -e 's,[@]OVS_MINOR[@],$(shell echo $(VERSION) | cut -f2 -d.),g') \
- < $(srcdir)/Documentation/$(@F).in > $(@F).tmp || exit 1; \
- if cmp -s $(@F).tmp $@; then touch $@; rm $(@F).tmp; else mv $(@F).tmp $@; fi
-
endif
.PHONY: check-docs
.PHONY: clean-docs