* cfg.mk (sc_option_desc_uppercase): Here, by grafting the 'man/' prefix to the manpages obtained from the $(NO_INSTALL_PROGS_DEFAULT) and listed as prerequisites for this rule.
Signed-off-by: Stefano Lattarini <[email protected]> --- cfg.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cfg.mk b/cfg.mk index 5b0f1fc..50fb13e 100644 --- a/cfg.mk +++ b/cfg.mk @@ -177,7 +177,7 @@ sc_option_desc_uppercase: { echo 1>&2 '$@: found initial capitals in --help'; \ exit 1; } || :; sc_option_desc_uppercase: $(dist_man1_MANS) \ - $(NO_INSTALL_PROGS_DEFAULT:%=%.1) \ + $(patsubst %,man/%.1,$(NO_INSTALL_PROGS_DEFAULT)) \ all_programs # Ensure all man/*.[1x] files are present. -- 1.7.12
