This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Check for makeinfo >4.9 fails


In newlib configure it is a test for makeinfo version larger than 4.4.
On my Fedora7 distro texinfo got updated to version 4.11, and then this
test failed.

In 1.15.0 ./configure.in line 2236 this reads:

    if ${MAKEINFO} --version \
       | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9])' >/dev/null
2>&1; then
      :
Changeing it to:
    if ${MAKEINFO} --version \
       | egrep 'texinfo[^0-9]*([1-3][0-9]|4\.[4-9]|[5-9]|4\.1[0-9])'
>/dev/null 2>&1; then
      :
fixes the problem.
I guess there could be a more generic test, but...

I do not have right do do any changes in any repository, so I hope some
that has can fix it.
Regards
Per A.

-- 
Per Arnold Blåsmo
Senior Design Engineer
Atmel Norway, Vestre Rosten 79, 7075 Tiller (Trondheim), Norway 

e-mail: pablaasmo@atmel.com
g-talk: pablaasmo@gmail.com
phone:  +47-72897 651
mob:    +47-901 63 657	


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]