There is a \ missing from the end of the second line of EXTRA_DIST, which results in a couple of files being left out of make dist, which in turn makes distcheck and building from dist tarballs fail. This patch adds the missing \. Signed-off-by: Gergely Nagy <algernon@balabit.hu> --- doc/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/doc/Makefile.am b/doc/Makefile.am index 33b113c..6c6c1c2 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,7 +1,7 @@ man_MANS = man/syslog-ng.8 man/syslog-ng.conf.5 man/pdbtool.1 man/loggen.1 man/syslog-ng-ctl.1 EXTRA_DIST = man/syslog-ng.8.xml man/syslog-ng.conf.5.xml man/pdbtool.1.xml man/loggen.1.xml man/syslog-ng-ctl.1.xml \ - $(man_MANS) + $(man_MANS) \ security/bof-2002-09-27.txt \ security/dos-2000-11-22.txt \ xsd/patterndb-1.xsd \ -- 1.7.9