bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug in configure script, binutils-2.18


From: edscott
Subject: bug in configure script, binutils-2.18
Date: Tue, 09 Sep 2008 13:27:09 -0500
User-agent: Thunderbird 2.0.0.16 (X11/20080707)

Sorry to post this directly, couldn't find a bugzilla page for binutils...

The configure script is supposed to check for makeinfo >= 4.4, but the regular
expression used will fail for makeinfo >= 4.10 and < 5.0.

Current ebuild for texinfo is 4.11, so it fails.

Patch:



--- configure.ac.old    2008-09-09 12:35:56.000000000 -0500
+++ configure.ac        2008-09-09 12:38:33.000000000 -0500
@@ -2403,7 +2403,7 @@
    # For an installed makeinfo, we require it to be from texinfo 4.4 or
    # higher, else we use the "missing" dummy.
    if ${MAKEINFO} --version \
- | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then + | egrep 'texinfo[^0-9]*(4\.1[0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then
      :
    else
      MAKEINFO="$MISSING makeinfo"





reply via email to

[Prev in Thread] Current Thread [Next in Thread]