From 45427bc641c96c1ad27db147c9a33ea8ff5421da Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Mon, 4 Nov 2019 23:43:38 +0100 Subject: [PATCH] build: Add sensible NAME section for man pages. Thanks, Vagrant! * build-aux/GNUmakefile.in (mes.1, mescc.1, mesar.1): Add sensible --name section. Fixes Debian lint error. Reported by Vagrant Cascadian. --- build-aux/GNUmakefile.in | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/build-aux/GNUmakefile.in b/build-aux/GNUmakefile.in index 6f3fda5e..a507d443 100644 --- a/build-aux/GNUmakefile.in +++ b/build-aux/GNUmakefile.in @@ -192,7 +192,7 @@ else $(warning info: graphvis missing: no images) endif -man: doc/mes.1 doc/mescc.1 +man: doc/mes.1 doc/mescc.1 doc/mesar.1 # disable builtin-rules %.o: %.s @@ -204,10 +204,19 @@ man: doc/mes.1 doc/mescc.1 %: %.c doc/mes.1: src/${program_prefix}mes | build - MES_ARENA=10000000 ./pre-inst-env $(HELP2MAN) $( $@ + MES_ARENA=10000000 ./pre-inst-env $(HELP2MAN) \ + --name="Scheme interpreter for bootstrapping the GNU system" \ + $( $@ doc/mescc.1: scripts/mescc src/${program_prefix}mes | build - MES_ARENA=10000000 ./pre-inst-env $(HELP2MAN) $( $@ + MES_ARENA=10000000 ./pre-inst-env $(HELP2MAN) \ + --name="C99 compiler in Scheme for bootstrapping the GNU system" \ + $( $@ + +doc/mesar.1: scripts/mescc src/${program_prefix}mes | build + MES_ARENA=10000000 ./pre-inst-env $(HELP2MAN) \ + --name="Archiver for MesCC" \ + $( $@ html: doc/html/index.html