diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-03 21:23:34 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-03-03 21:23:34 +0000 |
commit | c130919ae829e91651173d4be81bf4cbc5406b88 (patch) | |
tree | 96a95a1acbc17cf5364a436cda931d2593420626 /toolchain/binutils/2.17 | |
parent | c4da6199f0f37018e2273d02f9fef1072da7f873 (diff) | |
download | buildroot-novena-c130919ae829e91651173d4be81bf4cbc5406b88.tar.gz buildroot-novena-c130919ae829e91651173d4be81bf4cbc5406b88.zip |
binutils: 2.17: fix makeinfo 4.xx check
Fixes #111.
Diffstat (limited to 'toolchain/binutils/2.17')
-rw-r--r-- | toolchain/binutils/2.17/500-fix-makeinfo-check.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/toolchain/binutils/2.17/500-fix-makeinfo-check.patch b/toolchain/binutils/2.17/500-fix-makeinfo-check.patch new file mode 100644 index 000000000..c4c8888e1 --- /dev/null +++ b/toolchain/binutils/2.17/500-fix-makeinfo-check.patch @@ -0,0 +1,17 @@ +--- + configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +Index: binutils-2.17/configure +=================================================================== +--- binutils-2.17.orig/configure ++++ binutils-2.17/configure +@@ -3637,7 +3637,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]*([1-3][0-9]|4\.[4-9]|4\.[1-9][0-9]|[5-9])' >/dev/null 2>&1; then + : + else + MAKEINFO="$MISSING makeinfo" |