summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon McVittie <smcv@collabora.com>2018-05-03 10:30:30 +0100
committerSimon McVittie <smcv@collabora.com>2018-05-03 13:14:52 +0100
commit08be9858414f257f047c1d4f11bcd6f26ee884f1 (patch)
treeeaa554b85f472db03f55af7c88f1afabbeba0a42
parentb6f7db7fea9bc25901ebd8bd4a1d3a4ea4058965 (diff)
build: Don't install stamp file for documentation build
Signed-off-by: Simon McVittie <smcv@collabora.com>
-rw-r--r--Makefile.am8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.am b/Makefile.am
index 3e4d090..5eefd87 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -410,9 +410,9 @@ install-data-local: install-data-local-sphinx
uninstall-local: uninstall-local-sphinx
if ENABLE_DOCUMENTATION
-all: doc/_build/stamp
+all: doc/_build/.stamp
-doc/_build/stamp: $(nobase_python_PYTHON) \
+doc/_build/.stamp: $(nobase_python_PYTHON) \
_dbus_bindings.la \
_dbus_glib_bindings.la \
$(sphinx_sources) \
@@ -428,11 +428,11 @@ doc/_build/stamp: $(nobase_python_PYTHON) \
$(PYTHON) $(srcdir)/doc/redirects.py
touch $@
-maintainer-update-website: doc/_build/stamp
+maintainer-update-website: doc/_build/.stamp
rsync -rtvzPp --chmod=Dg+s,ug+rwX,o=rX doc/_build/ \
dbus.freedesktop.org:/srv/dbus.freedesktop.org/www/doc/dbus-python/
-install-data-local-sphinx: doc/_build/stamp
+install-data-local-sphinx: doc/_build/.stamp
$(mkinstalldirs) $(DESTDIR)$(htmldir)
cp -R doc/_build/* $(DESTDIR)$(htmldir)