diff options
author | Chen Qi <Qi.Chen@windriver.com> | 2016-12-26 16:10:35 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-01-16 18:01:50 +0000 |
commit | 07fabf6aa622c4b9ed6f0dc97a6acf5df5a6f058 (patch) | |
tree | 1a40516139cb501d4aef775243105170b99ebf70 /meta | |
parent | 5cacc3cd986d5a6e7ed68171b3908fbae111330b (diff) | |
download | openembedded-core-07fabf6aa622c4b9ed6f0dc97a6acf5df5a6f058.tar.gz openembedded-core-07fabf6aa622c4b9ed6f0dc97a6acf5df5a6f058.tar.bz2 openembedded-core-07fabf6aa622c4b9ed6f0dc97a6acf5df5a6f058.zip |
coreutils: upgrade to 8.26
Add 0001-local.mk-fix-cross-compiling-problem.patch to fix the following
cross compiling problem.
| Makefile:3418: *** Recursive variable 'INSTALL' references itself (eventually). Stop.
Signed-off-by: Chen Qi <Qi.Chen@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-core/coreutils/coreutils-8.26/0001-Unset-need_charset_alias-when-building-for-musl.patch (renamed from meta/recipes-core/coreutils/coreutils-8.25/0001-Unset-need_charset_alias-when-building-for-musl.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-core/coreutils/coreutils-8.26/0001-local.mk-fix-cross-compiling-problem.patch | 26 | ||||
-rw-r--r-- | meta/recipes-core/coreutils/coreutils-8.26/0001-uname-report-processor-and-hardware-correctly.patch (renamed from meta/recipes-core/coreutils/coreutils-8.25/0001-uname-report-processor-and-hardware-correctly.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-core/coreutils/coreutils-8.26/disable-ls-output-quoting.patch (renamed from meta/recipes-core/coreutils/coreutils-8.25/disable-ls-output-quoting.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-core/coreutils/coreutils-8.26/fix-selinux-flask.patch (renamed from meta/recipes-core/coreutils/coreutils-8.25/fix-selinux-flask.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-core/coreutils/coreutils-8.26/man-decouple-manpages-from-build.patch (renamed from meta/recipes-core/coreutils/coreutils-8.25/man-decouple-manpages-from-build.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-core/coreutils/coreutils-8.26/remove-usr-local-lib-from-m4.patch (renamed from meta/recipes-core/coreutils/coreutils-8.25/remove-usr-local-lib-from-m4.patch) | 0 | ||||
-rw-r--r-- | meta/recipes-core/coreutils/coreutils_8.26.bb (renamed from meta/recipes-core/coreutils/coreutils_8.25.bb) | 9 |
8 files changed, 31 insertions, 4 deletions
diff --git a/meta/recipes-core/coreutils/coreutils-8.25/0001-Unset-need_charset_alias-when-building-for-musl.patch b/meta/recipes-core/coreutils/coreutils-8.26/0001-Unset-need_charset_alias-when-building-for-musl.patch index ba1a4bab4c..ba1a4bab4c 100644 --- a/meta/recipes-core/coreutils/coreutils-8.25/0001-Unset-need_charset_alias-when-building-for-musl.patch +++ b/meta/recipes-core/coreutils/coreutils-8.26/0001-Unset-need_charset_alias-when-building-for-musl.patch diff --git a/meta/recipes-core/coreutils/coreutils-8.26/0001-local.mk-fix-cross-compiling-problem.patch b/meta/recipes-core/coreutils/coreutils-8.26/0001-local.mk-fix-cross-compiling-problem.patch new file mode 100644 index 0000000000..66f9a716c9 --- /dev/null +++ b/meta/recipes-core/coreutils/coreutils-8.26/0001-local.mk-fix-cross-compiling-problem.patch @@ -0,0 +1,26 @@ +Subject: local.mk: fix cross compiling problem + +We meet the following error when cross compiling. +| Makefile:3418: *** Recursive variable 'INSTALL' references itself (eventually). Stop. +This patch fixes this problem. + +Upstream-Status: Pending + +Signed-off-by: Chen Qi <Qi.Chen@windriver.com> +--- + src/local.mk | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/local.mk b/src/local.mk +index 36dfa4e..c5898cc 100644 +--- a/src/local.mk ++++ b/src/local.mk +@@ -649,4 +649,4 @@ cu_install_program = @INSTALL_PROGRAM@ + else + cu_install_program = src/ginstall + endif +-INSTALL = $(cu_install_program) -c ++INSTALL_PROGRAM = $(cu_install_program) +-- +2.1.0 + diff --git a/meta/recipes-core/coreutils/coreutils-8.25/0001-uname-report-processor-and-hardware-correctly.patch b/meta/recipes-core/coreutils/coreutils-8.26/0001-uname-report-processor-and-hardware-correctly.patch index 3c43e1d5da..3c43e1d5da 100644 --- a/meta/recipes-core/coreutils/coreutils-8.25/0001-uname-report-processor-and-hardware-correctly.patch +++ b/meta/recipes-core/coreutils/coreutils-8.26/0001-uname-report-processor-and-hardware-correctly.patch diff --git a/meta/recipes-core/coreutils/coreutils-8.25/disable-ls-output-quoting.patch b/meta/recipes-core/coreutils/coreutils-8.26/disable-ls-output-quoting.patch index e68c213550..e68c213550 100644 --- a/meta/recipes-core/coreutils/coreutils-8.25/disable-ls-output-quoting.patch +++ b/meta/recipes-core/coreutils/coreutils-8.26/disable-ls-output-quoting.patch diff --git a/meta/recipes-core/coreutils/coreutils-8.25/fix-selinux-flask.patch b/meta/recipes-core/coreutils/coreutils-8.26/fix-selinux-flask.patch index 9d1ae55d47..9d1ae55d47 100644 --- a/meta/recipes-core/coreutils/coreutils-8.25/fix-selinux-flask.patch +++ b/meta/recipes-core/coreutils/coreutils-8.26/fix-selinux-flask.patch diff --git a/meta/recipes-core/coreutils/coreutils-8.25/man-decouple-manpages-from-build.patch b/meta/recipes-core/coreutils/coreutils-8.26/man-decouple-manpages-from-build.patch index 3c896a11bf..3c896a11bf 100644 --- a/meta/recipes-core/coreutils/coreutils-8.25/man-decouple-manpages-from-build.patch +++ b/meta/recipes-core/coreutils/coreutils-8.26/man-decouple-manpages-from-build.patch diff --git a/meta/recipes-core/coreutils/coreutils-8.25/remove-usr-local-lib-from-m4.patch b/meta/recipes-core/coreutils/coreutils-8.26/remove-usr-local-lib-from-m4.patch index 2ef8a548ac..2ef8a548ac 100644 --- a/meta/recipes-core/coreutils/coreutils-8.25/remove-usr-local-lib-from-m4.patch +++ b/meta/recipes-core/coreutils/coreutils-8.26/remove-usr-local-lib-from-m4.patch diff --git a/meta/recipes-core/coreutils/coreutils_8.25.bb b/meta/recipes-core/coreutils/coreutils_8.26.bb index 6d6f7bc84e..caa6d96e25 100644 --- a/meta/recipes-core/coreutils/coreutils_8.25.bb +++ b/meta/recipes-core/coreutils/coreutils_8.26.bb @@ -20,12 +20,13 @@ SRC_URI = "${GNU_MIRROR}/coreutils/${BP}.tar.xz;name=tarball \ file://0001-Unset-need_charset_alias-when-building-for-musl.patch \ file://0001-uname-report-processor-and-hardware-correctly.patch \ file://disable-ls-output-quoting.patch \ + file://0001-local.mk-fix-cross-compiling-problem.patch \ " -SRC_URI[tarball.md5sum] = "070e43ba7f618d747414ef56ab248a48" -SRC_URI[tarball.sha256sum] = "31e67c057a5b32a582f26408c789e11c2e8d676593324849dcf5779296cdce87" -SRC_URI[manpages.md5sum] = "415cc0552bc4e480b27ce8b2aebfdeb5" -SRC_URI[manpages.sha256sum] = "2ee31c3a6d2276f49c5515375d4a0c1047580da6ac10536898e0f0de81707f29" +SRC_URI[tarball.md5sum] = "d5aa2072f662d4118b9f4c63b94601a6" +SRC_URI[tarball.sha256sum] = "155e94d748f8e2bc327c66e0cbebdb8d6ab265d2f37c3c928f7bf6c3beba9a8e" +SRC_URI[manpages.md5sum] = "b58107f532f7beffcb2f38e2ac1f2da3" +SRC_URI[manpages.sha256sum] = "9324ec412ffca3b0431e6299720c33ac98e749e430f72a7c6e65f3635c86aa29" EXTRA_OECONF_class-native = "--without-gmp" EXTRA_OECONF_class-target = "--enable-install-program=arch --libexecdir=${libdir}" |