bug-binutils
[Top][All Lists]
Advanced

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

Build problem in binutils2.18


From: Heinz-Ado Arnolds
Subject: Build problem in binutils2.18
Date: Mon, 28 Jan 2008 15:39:19 +0100
User-agent: Thunderbird 1.5.0.13 (X11/20070809)

configure checks for the release of the installed makeinfo/texinfo. It
only recognizes releases from the 4 series in the range 4-9.

configure.ac:
...
    if ${MAKEINFO} --version \
       | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null 2>&1; then
...

this should be changed to
...
    if ${MAKEINFO} --version \
| egrep 'texinfo[^0-9]*([1-3][0-9]|4\.(4|5|6|7|8|9|11)|[5-9])' >/dev/null 2>&1; then
...

Kind regards,

Ado

--
________________________________________________________________________

Dipl.-Ing. Heinz-Ado Arnolds

MPI fuer Astrophysik
Karl-Schwarzschild-Strasse 1
D-85748 Garching
Phone:  +49/89/30000-2217
FAX  :  +49/89/30000-2388
email:  arnolds[at]MPA-Garching.MPG.DE
________________________________________________________________________
diff -cr binutils-2.18.orig/configure binutils-2.18/configure
*** binutils-2.18.orig/configure        Mon Aug  6 22:29:40 2007
--- binutils-2.18/configure     Mon Jan 28 15:36:31 2008
***************
*** 6128,6134 ****
      # 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
        :
      else
        MAKEINFO="$MISSING makeinfo"
--- 6128,6134 ----
      # 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|5|6|7|8|9|11)|[5-9])' 
>/dev/null 2>&1; then
        :
      else
        MAKEINFO="$MISSING makeinfo"

reply via email to

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