On Mon, Mar 09, 2009 at 03:59:17PM -0500, Mike Frysinger wrote: > On Monday 09 March 2009 14:48:59 Michal Marek wrote: > > @@ -20,7 +20,9 @@ AC_PROG_CC > > AC_CHECK_PROGS(DOCBOOKTOMAN, docbook-to-man docbook2man, [no],) > > if test x"$DOCBOOKTOMAN" = xno > > then > > - AC_MSG_ERROR([docbook2man not found]) > > + AC_MSG_WARN([docbook2man not found]) > > + # fail with a meaningfull error if $DOCBOOKTOMAN called by the makefile > > + DOCBOOKTOMAN=docbook2man > > fi > > better to use the missing script from automake > -mike OK, updated patch attached Subject: [PATCH] Don't abort the build if docbook2man is missing Instead of aborting the build, print a warning if neither docbook2man nor docbook-to-man is found. Signed-off-by: Michal Marek <mmarek@xxxxxxx> --- configure.ac | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/configure.ac b/configure.ac index 9f09102..7b860b1 100644 --- a/configure.ac +++ b/configure.ac @@ -22,7 +22,9 @@ AC_PROG_CC AC_CHECK_PROGS(DOCBOOKTOMAN, docbook-to-man docbook2man, [no],) if test x"$DOCBOOKTOMAN" = xno then - AC_MSG_ERROR([docbook2man not found]) + AC_MSG_WARN([docbook2man not found]) + # fail with a meaningfull error if $DOCBOOKTOMAN called by the makefile + DOCBOOKTOMAN='${top_srcdir}/missing docbook2man' fi # Delay adding the zlib_flags until after AC_PROG_CC, so we can distinguish -- To unsubscribe from this list: send the line "unsubscribe linux-modules" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html