blob: 4358629b7bf937976a7974aad7710f5c1890303e [file] [log] [blame]
Patrick Williamsb48b7b42016-08-17 15:04:38 -05001Disable building manpages so that make install doesn't fail due to lack of help2man
2
3Upstream-Status: Inappropriate [config]
4
5Signed-off-by: Matthieu Crapet <Matthieu.Crapet@ingenico.com>
6---
7 configure.ac | 3 ---
8 doc/Makefile.am | 5 -----
9 2 files changed, 8 deletions(-)
10
11diff --git a/configure.ac b/configure.ac
12index ee7eca0..1f0d924 100644
13--- a/configure.ac
14+++ b/configure.ac
15@@ -134,9 +134,6 @@ dnl check that the required tools are available to generate documentation
16 if test "$HAS_MAKEINFO" != "yes" ; then
17 AC_MSG_ERROR([Please install makeinfo before installing])
18 fi
19-if test "$HAS_HELP2MAN" != "yes" ; then
20- AC_MSG_ERROR([Please install help2man])
21-fi
22
23 dnl Checking for log10 function in math - I would like to remove this
24 AC_CHECK_LIB(m, log10)
25diff --git a/doc/Makefile.am b/doc/Makefile.am
26index 60662f6..0ae0013 100644
27--- a/doc/Makefile.am
28+++ b/doc/Makefile.am
29@@ -1,15 +1,10 @@
30 info_TEXINFOS = cgdb.texi
31 cgdb_TEXINFOS = gpl.texi
32
33-dist_man_MANS = cgdb.1
34 EXTRA_DIST = cgdb.txt
35
36 dist_pkgdata_DATA = cgdb.txt
37
38-# generate the man page using help2man.
39-cgdb.1:
40- help2man --output=$(top_srcdir)/doc/cgdb.1 $(top_builddir)/cgdb/cgdb$(EXEEXT)
41-
42 cgdb.txt: cgdb.texi $(srcdir)/version.texi $(cgdb_TEXINFOS)
43 TEXTS = cgdb.txt
44 text-am: $(TEXTS)
45--
461.9.1
47