mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-25 18:32:57 +02:00
20 lines
932 B
Diff
20 lines
932 B
Diff
Submitted By: Matt Burgess (matthew at linuxfromscratch dot org)
|
|
Date: 2007-11-19
|
|
Initial Package Version: 2.18
|
|
Origin: Upstream (http://sourceware.org/cgi-bin/cvsweb.cgi/src/configure.diff?r1=1.268&r2=1.268.2.1&cvsroot=src)
|
|
Upstream Status: Applied
|
|
Description: Fixes the configure script to correctly dictate Texinfo > 4.9.
|
|
|
|
diff -Naur binutils-2.18.orig/configure binutils-2.18/configure
|
|
--- binutils-2.18.orig/configure 2007-08-06 20:29:40.000000000 +0000
|
|
+++ binutils-2.18/configure 2007-11-18 22:37:58.000000000 +0000
|
|
@@ -6128,7 +6128,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\.([4-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
MAKEINFO="$MISSING makeinfo"
|