diff options
author | DJ Delorie <dj@redhat.com> | 2001-11-13 03:54:15 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2001-11-13 03:54:15 +0000 |
commit | 1a78a35acfb696d2262b7c2d707b9e6421c99aaa (patch) | |
tree | f56c67ced07f962db6580e3ceaed514464043191 /libiberty/configure.in | |
parent | 4e6bfe8ada4bae838d47c169d1cc2899db66ff19 (diff) | |
download | gdb-1a78a35acfb696d2262b7c2d707b9e6421c99aaa.zip gdb-1a78a35acfb696d2262b7c2d707b9e6421c99aaa.tar.gz gdb-1a78a35acfb696d2262b7c2d707b9e6421c99aaa.tar.bz2 |
merge from gcc
Diffstat (limited to 'libiberty/configure.in')
-rw-r--r-- | libiberty/configure.in | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/libiberty/configure.in b/libiberty/configure.in index 3417827..505b520 100644 --- a/libiberty/configure.in +++ b/libiberty/configure.in @@ -52,15 +52,20 @@ AC_SUBST(NOTMAINT)dnl # Do we have a single-tree copy of texinfo? Even if we do, we can't # rely on it - libiberty is built before texinfo. AC_CHECK_PROG(MAKEINFO, makeinfo, makeinfo, ) -BUILD_INFO=info -case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in - x*\ [[1-3]].* ) - MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required ;true" +if test "x$MAKEINFO" = "x"; then + MAKEINFO="@echo makeinfo missing; true" BUILD_INFO= - AC_MSG_WARN([ +else + BUILD_INFO=info + case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in + x*\ [[1-3]].* ) + MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required; true" + BUILD_INFO= + AC_MSG_WARN([ *** Makeinfo is too old. Info documentation will not be built.]) - ;; -esac + ;; + esac +fi AC_SUBST(MAKEINFO) AC_SUBST(BUILD_INFO) |