diff options
author | Uli Schlachter <psychon@znc.in> | 2012-10-05 11:23:26 +0200 |
---|---|---|
committer | Uli Schlachter <psychon@znc.in> | 2012-10-05 11:23:26 +0200 |
commit | 4f52f884f42b72087f3323f2bab204223664a488 (patch) | |
tree | e6165035d848653c294eeda00c85feef90dfb6ff | |
parent | 23911a707b8845bff52cd7853fc5d59fb0823cef (diff) |
Include static man pages in "make dist"
This was found by distcheck. It tried to install src/man/xcb-examples.3 and
src/man/xcb-requests.3, but those files weren't in the distribution.
Fix this by explicitly telling automake to distribute those files.
Signed-off-by: Uli Schlachter <psychon@znc.in>
-rw-r--r-- | src/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index fed6914..6b5a2c3 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -227,7 +227,8 @@ noinst_HEADERS = xcbint.h STATIC_MANS = man/xcb-examples.3 man/xcb-requests.3 BUILT_MANS = man/xcb_*.3 -man_MANS = = $(STATIC_MANS) $(BUILT_MANS) +man_MANS = $(STATIC_MANS) $(BUILT_MANS) +EXTRA_DIST = $(STATIC_MANS) BUILT_SOURCES = $(EXTSOURCES) $(BUILT_MANS) CLEANFILES = $(EXTSOURCES) $(EXTHEADERS) $(BUILT_MANS) |