diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2012-05-03 09:19:08 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-05-25 11:17:37 +0100 |
commit | 64789e3d444df7f2fb8206d73427b27bdc7bae25 (patch) | |
tree | 761aa51a4351123fdbe68ade472e3663cf4ec1cd /meta/recipes-extended/texinfo/texinfo-4.13a | |
parent | 5f2e979607d20230c61ee1a519f9b63b0eb620eb (diff) | |
download | openembedded-core-64789e3d444df7f2fb8206d73427b27bdc7bae25.tar.gz openembedded-core-64789e3d444df7f2fb8206d73427b27bdc7bae25.tar.bz2 openembedded-core-64789e3d444df7f2fb8206d73427b27bdc7bae25.zip |
texinfo: fix build with automake 1.12
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/recipes-extended/texinfo/texinfo-4.13a')
-rw-r--r-- | meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch b/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch new file mode 100644 index 0000000000..11d34b1cf9 --- /dev/null +++ b/meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch @@ -0,0 +1,24 @@ +Upstream-Status: pending + +automake 1.12 has deprecated support for lzma-compressed distribution archives +this patch fixes following issue with automake 1.12 + +| configure.ac:16: error: support for lzma-compressed distribution archives has been removed + +Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> +2012/05/03 + + +Index: texinfo-4.13/configure.ac +=================================================================== +--- texinfo-4.13.orig/configure.ac ++++ texinfo-4.13/configure.ac +@@ -13,7 +13,7 @@ AC_INIT([GNU Texinfo], [4.13], [bug-texi + + dnl Must come before AM_INIT_AUTOMAKE. + AC_CONFIG_AUX_DIR([build-aux]) +-AM_INIT_AUTOMAKE([1.10.1 readme-alpha dist-lzma]) ++AM_INIT_AUTOMAKE([1.10.1 readme-alpha]) + + # Minimum Autoconf version required. + AC_PREREQ(2.59) |