From e1ab265402d92623079f0259e7861b238773ee02 Mon Sep 17 00:00:00 2001 From: Nick Bowler Date: Tue, 7 Jun 2022 23:51:59 -0400 Subject: [PATCH] Ensure manpages are distributed. It seems using dist_man_MANS in an Automake conditional doesn't actually ensure the manpage is distributed, so we need to just use man_MANS in the conditional and EXTRA_DIST unconditionally. --- Makefile.am | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 0334b20..821701d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,9 +24,11 @@ endif if HAVE_MOTIF bin_PROGRAMS += rrace-motif -dist_man_MANS = doc/rrace-motif.1 +man_MANS = doc/rrace-motif.1 endif +EXTRA_DIST += doc/rrace-motif.1 + noinst_HEADERS = conf_post.h src/version.h rrace_curses_SOURCES = common/src/help.c src/game.c src/version.c -- 2.43.2