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:58 +0100 |
commit | 8d63ffe927b1cdcd533addcd50ef3d9b8c9f272f (patch) | |
tree | 279b6cc92975b58452819388ac22502ffe9a1ca6 /meta | |
parent | 12f465d35d95e0149dce661aab8d2deaafcd9528 (diff) | |
download | poky-8d63ffe927b1cdcd533addcd50ef3d9b8c9f272f.tar.gz |
texinfo: fix build with automake 1.12
(From OE-Core rev: 64789e3d444df7f2fb8206d73427b27bdc7bae25)
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/texinfo/texinfo-4.13a/texinfo_fix_for_automake-1.12.patch | 24 | ||||
-rw-r--r-- | meta/recipes-extended/texinfo/texinfo_4.13a.bb | 3 |
2 files changed, 26 insertions, 1 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 @@ | |||
1 | Upstream-Status: pending | ||
2 | |||
3 | automake 1.12 has deprecated support for lzma-compressed distribution archives | ||
4 | this patch fixes following issue with automake 1.12 | ||
5 | |||
6 | | configure.ac:16: error: support for lzma-compressed distribution archives has been removed | ||
7 | |||
8 | Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> | ||
9 | 2012/05/03 | ||
10 | |||
11 | |||
12 | Index: texinfo-4.13/configure.ac | ||
13 | =================================================================== | ||
14 | --- texinfo-4.13.orig/configure.ac | ||
15 | +++ texinfo-4.13/configure.ac | ||
16 | @@ -13,7 +13,7 @@ AC_INIT([GNU Texinfo], [4.13], [bug-texi | ||
17 | |||
18 | dnl Must come before AM_INIT_AUTOMAKE. | ||
19 | AC_CONFIG_AUX_DIR([build-aux]) | ||
20 | -AM_INIT_AUTOMAKE([1.10.1 readme-alpha dist-lzma]) | ||
21 | +AM_INIT_AUTOMAKE([1.10.1 readme-alpha]) | ||
22 | |||
23 | # Minimum Autoconf version required. | ||
24 | AC_PREREQ(2.59) | ||
diff --git a/meta/recipes-extended/texinfo/texinfo_4.13a.bb b/meta/recipes-extended/texinfo/texinfo_4.13a.bb index f9e566b2c2..50892ce2cf 100644 --- a/meta/recipes-extended/texinfo/texinfo_4.13a.bb +++ b/meta/recipes-extended/texinfo/texinfo_4.13a.bb | |||
@@ -6,7 +6,7 @@ HOMEPAGE = "http://www.gnu.org/software/texinfo/" | |||
6 | SECTION = "console/utils" | 6 | SECTION = "console/utils" |
7 | LICENSE = "GPLv3+" | 7 | LICENSE = "GPLv3+" |
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010" | 8 | LIC_FILES_CHKSUM = "file://COPYING;md5=adefda309052235aa5d1e99ce7557010" |
9 | PR = "r4" | 9 | PR = "r5" |
10 | 10 | ||
11 | DEPENDS = "zlib ncurses texinfo-native" | 11 | DEPENDS = "zlib ncurses texinfo-native" |
12 | DEPENDS_virtclass-native = "zlib-native ncurses-native" | 12 | DEPENDS_virtclass-native = "zlib-native ncurses-native" |
@@ -23,6 +23,7 @@ SRC_URI = "${GNU_MIRROR}/texinfo/texinfo-${PV}.tar.gz \ | |||
23 | file://disable-native-tools.patch \ | 23 | file://disable-native-tools.patch \ |
24 | file://link-zip.patch \ | 24 | file://link-zip.patch \ |
25 | file://gettext-macros.patch \ | 25 | file://gettext-macros.patch \ |
26 | file://texinfo_fix_for_automake-1.12.patch \ | ||
26 | ${TARGET_PATCH}" | 27 | ${TARGET_PATCH}" |
27 | 28 | ||
28 | SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb" | 29 | SRC_URI[md5sum] = "71ba711519209b5fb583fed2b3d86fcb" |