diff options
-rw-r--r-- | meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch | 32 | ||||
-rw-r--r-- | meta/recipes-core/coreutils/coreutils_6.9.bb | 6 |
2 files changed, 36 insertions, 2 deletions
diff --git a/meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch b/meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch new file mode 100644 index 0000000000..02730dbbb4 --- /dev/null +++ b/meta/recipes-core/coreutils/coreutils-6.9/coreutils_fix_for_automake-1.12.patch | |||
@@ -0,0 +1,32 @@ | |||
1 | Upstream-Status: Pending | ||
2 | |||
3 | automake 1.12 has depricated automatic de-ANSI-fication support | ||
4 | |||
5 | this patch avoids these kinds of errors: | ||
6 | |||
7 | | configure.ac:40: error: automatic de-ANSI-fication support has been removed | ||
8 | | /srv/home/nitin/builds/build-gcc47/tmp/sysroots/x86_64-linux/usr/share/aclocal-1.12/protos.m4:12: AM_C_PROTOTYPES is expanded from... | ||
9 | | /srv/home/nitin/builds/build-gcc47/tmp/work/x86_64-linux/coreutils-native-6.9-r2/coreutils-6.9/m4/jm-macros.m4:138: gl_CHECK_ALL_TYPES is expanded from... | ||
10 | | /srv/home/nitin/builds/build-gcc47/tmp/work/x86_64-linux/coreutils-native-6.9-r2/coreutils-6.9/m4/jm-macros.m4:24: coreutils_MACROS is expanded from... | ||
11 | | configure.ac:40: the top level | ||
12 | | autom4te: m4 failed with exit status: 1 | ||
13 | |||
14 | Signed-Off-By: Nitin A Kamble <nitin.a.kamble@intel.com> | ||
15 | 2012/05/04 | ||
16 | |||
17 | Index: coreutils-6.9/m4/jm-macros.m4 | ||
18 | =================================================================== | ||
19 | --- coreutils-6.9.orig/m4/jm-macros.m4 | ||
20 | +++ coreutils-6.9/m4/jm-macros.m4 | ||
21 | @@ -142,11 +142,6 @@ AC_DEFUN([gl_CHECK_ALL_TYPES], | ||
22 | dnl whether functions and headers are available, whether they work, etc. | ||
23 | AC_REQUIRE([AC_SYS_LARGEFILE]) | ||
24 | |||
25 | - dnl This test must precede tests of compiler characteristics like | ||
26 | - dnl that for the inline keyword, since it may change the degree to | ||
27 | - dnl which the compiler supports such features. | ||
28 | - AC_REQUIRE([AM_C_PROTOTYPES]) | ||
29 | - | ||
30 | dnl Checks for typedefs, structures, and compiler characteristics. | ||
31 | AC_REQUIRE([AC_C_BIGENDIAN]) | ||
32 | AC_REQUIRE([AC_C_VOLATILE]) | ||
diff --git a/meta/recipes-core/coreutils/coreutils_6.9.bb b/meta/recipes-core/coreutils/coreutils_6.9.bb index 8a47a605c1..bbde63c697 100644 --- a/meta/recipes-core/coreutils/coreutils_6.9.bb +++ b/meta/recipes-core/coreutils/coreutils_6.9.bb | |||
@@ -8,7 +8,7 @@ BUGTRACKER = "http://debbugs.gnu.org/coreutils" | |||
8 | LICENSE = "GPLv2+" | 8 | LICENSE = "GPLv2+" |
9 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ | 9 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe \ |
10 | file://src/ls.c;startline=4;endline=16;md5=482a96d4f25010a4e13f8743e0c3685e" | 10 | file://src/ls.c;startline=4;endline=16;md5=482a96d4f25010a4e13f8743e0c3685e" |
11 | PR = "r2" | 11 | PR = "r3" |
12 | DEPENDS = "coreutils-native-${PV}" | 12 | DEPENDS = "coreutils-native-${PV}" |
13 | DEPENDS_virtclass-native = "gettext-native" | 13 | DEPENDS_virtclass-native = "gettext-native" |
14 | 14 | ||
@@ -22,7 +22,9 @@ SRC_URI_BASE = "${GNU_MIRROR}/coreutils/${BP}.tar.bz2 \ | |||
22 | file://coreutils-i18n.patch \ | 22 | file://coreutils-i18n.patch \ |
23 | file://coreutils-overflow.patch \ | 23 | file://coreutils-overflow.patch \ |
24 | file://coreutils-fix-install.patch \ | 24 | file://coreutils-fix-install.patch \ |
25 | file://man-touch.patch" | 25 | file://man-touch.patch \ |
26 | file://coreutils_fix_for_automake-1.12.patch \ | ||
27 | " | ||
26 | 28 | ||
27 | SRC_URI = "${SRC_URI_BASE} file://fix_for_manpage_building.patch" | 29 | SRC_URI = "${SRC_URI_BASE} file://fix_for_manpage_building.patch" |
28 | SRC_URI_virtclass-native = "${SRC_URI_BASE}" | 30 | SRC_URI_virtclass-native = "${SRC_URI_BASE}" |