1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
Description: Enable the build of the manpages
This is already enabled in the upstream git repo
Author: Matthias Geiger <werdahias@debian.org>
Forwarded: not-needed
Last-Update: 2025-10-01
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -7,7 +7,7 @@
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
-docs = linux-gpib.pdf #man
+docs = linux-gpib.pdf man
SGML = linux-gpib.sgml gpib_version.txt
@@ -33,7 +33,7 @@
doc_html/*: $(SGML)
{ $(JW_PATH) -f docbook -b html -o doc_html -V '%use-id-as-filename%' $(srcdir)/linux-gpib.sgml; } && { touch doc_html/*; }
-man/*: $(SGML)
+man: $(SGML)
{ $(JW_PATH) -f docbook -b man -o man $(srcdir)/linux-gpib.sgml; } && { touch man/*; }
gpib_version.txt:
|