diff options
author | Michal Sekletar <msekleta@redhat.com> | 2015-11-12 13:31:32 +0100 |
---|---|---|
committer | Michal Sekletar <msekleta@redhat.com> | 2015-11-12 14:07:41 +0100 |
commit | 100582b8cc89b165bc49914d2a04fe5e4ff5cfa6 (patch) | |
tree | 5cec2d088ac634220a7e7a7c03e6367f46e9492d /Makefile.am | |
parent | 1f920a33814552fb7ddfba52e62ac9cbdf8184fe (diff) |
build-sys: fix dependencies
update-man-list needs man/custom-entities.ent. Bug is nicely reproducible when
running make update-man-list.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index b13473d0d5..3e5d7b49b1 100644 --- a/Makefile.am +++ b/Makefile.am @@ -725,8 +725,8 @@ SOURCE_XML_FILES = ${patsubst %,$(top_srcdir)/%,$(filter-out man/systemd.directi # This target should only be run manually. It recreates Makefile-man.am # file in the source directory based on all man/*.xml files. Run it after # adding, removing, or changing the conditional in a man page. -update-man-list: $(top_srcdir)/tools/make-man-rules.py $(XML_GLOB) - $(AM_V_GEN)$(PYTHON) $^ > $(top_srcdir)/Makefile-man.tmp +update-man-list: $(top_srcdir)/tools/make-man-rules.py $(XML_GLOB) man/custom-entities.ent + $(AM_V_GEN)$(PYTHON) $< $(XML_GLOB) > $(top_srcdir)/Makefile-man.tmp $(AM_V_at)mv $(top_srcdir)/Makefile-man.tmp $(top_srcdir)/Makefile-man.am @echo "Makefile-man.am has been regenerated" |