]> git.ipfire.org Git - thirdparty/systemd.git/commit
build-sys: make man/systemd.directives.xml depend on man/custom-entities.ent 152/head
authorDaniel Mack <daniel@zonque.org>
Wed, 10 Jun 2015 18:42:56 +0000 (20:42 +0200)
committerDaniel Mack <daniel@zonque.org>
Wed, 10 Jun 2015 18:42:56 +0000 (20:42 +0200)
commit747ca69b5d984b130c4b983281f9b51f3b710340
tree55825f7ef571b619494297c86f544ad38a08ff91
parent4061eed4d91226f1f75e79350c5e1bdd4529d578
build-sys: make man/systemd.directives.xml depend on man/custom-entities.ent

Currently, the following command sequence fails:

  make distclean
  ./autogen.sh c
  make distcheck

That's because the command invoked to build man/systemd.directives.xml needs
man/custom-entities.ent to function, which itself isn't a dependency.

The $(filter-out $<,$^) logic used to filter out everything from the
prerequisites except for the first word, which doesn't work anymore
now. Use $(SOURCE_XML_FILES) instead.
Makefile.am