diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-20 15:07:43 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2007-11-20 15:07:43 +0000 |
commit | 4728d87b7a2982d7515709ecc2aa9ab4aeb664b5 (patch) | |
tree | 608a9d8141ad7cfdee857bdaecece66a629a589c /meta/packages/binutils/binutils-2.18 | |
parent | 8ad0e3544d33946e6f2d6eac7e262e00a9c8329d (diff) | |
download | openembedded-core-4728d87b7a2982d7515709ecc2aa9ab4aeb664b5.tar.gz openembedded-core-4728d87b7a2982d7515709ecc2aa9ab4aeb664b5.tar.bz2 openembedded-core-4728d87b7a2982d7515709ecc2aa9ab4aeb664b5.zip |
binutils: fix 'makeinfo >= 4.10 is too old' problem (from OE) - patch is applied upstream
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3199 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/packages/binutils/binutils-2.18')
-rw-r--r-- | meta/packages/binutils/binutils-2.18/binutils-configure-texinfo-version.patch | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta/packages/binutils/binutils-2.18/binutils-configure-texinfo-version.patch b/meta/packages/binutils/binutils-2.18/binutils-configure-texinfo-version.patch new file mode 100644 index 0000000000..dd21aed862 --- /dev/null +++ b/meta/packages/binutils/binutils-2.18/binutils-configure-texinfo-version.patch @@ -0,0 +1,22 @@ +--- binutils-2.18/configure.orig 2007-10-11 21:09:27.000000000 -0700 ++++ binutils-2.18/configure 2007-10-11 21:10:20.000000000 -0700 +@@ -6128,7 +6128,7 @@ case " $build_configdirs " in + # 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\.([6-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then + : + else + MAKEINFO="$MISSING makeinfo" +--- binutils-2.18/configure.ac.orig 2007-10-11 21:10:54.000000000 -0700 ++++ binutils-2.18/configure.ac 2007-10-11 21:11:13.000000000 -0700 +@@ -2403,7 +2403,7 @@ changequote(,) + # 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\.([6-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then + : + else + MAKEINFO="$MISSING makeinfo" |