diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2017-08-16 04:31:22 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-08-18 10:40:08 +0100 |
commit | a4ad0703e1209fee6cd89bf74088931785c4d8c7 (patch) | |
tree | a05d439b4ddfc788c1490b714926f400ef324907 /meta/recipes-core/ncurses/files/0002-configure-reproducible.patch | |
parent | b90037da8754009ca7cf2ab996b46b3dae1eb204 (diff) | |
download | openembedded-core-a4ad0703e1209fee6cd89bf74088931785c4d8c7.tar.gz openembedded-core-a4ad0703e1209fee6cd89bf74088931785c4d8c7.tar.bz2 openembedded-core-a4ad0703e1209fee6cd89bf74088931785c4d8c7.zip |
ncurses: 6.0+20161126 -> 6.0+20170715
Rebase patches:
- tic-hang.patch -> 0001
- configure-reproducible.patch -> 0002
Drop fix-cflags-mangle.patch, which accepted by upstream
...
commit 1b74f120ab7be89011408a6ad0f1c748a314bae8
Author: Sven Joachim <svenjoac@gmx.de>
Date: Sun Feb 26 09:01:34 2017 +0100
Import upstream patch 20170225
20170225
+ fixes for CF_CC_ENV_FLAGS (report by Ross Burton).
...
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-core/ncurses/files/0002-configure-reproducible.patch')
-rw-r--r-- | meta/recipes-core/ncurses/files/0002-configure-reproducible.patch | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/meta/recipes-core/ncurses/files/0002-configure-reproducible.patch b/meta/recipes-core/ncurses/files/0002-configure-reproducible.patch new file mode 100644 index 0000000000..c47ce6a8cb --- /dev/null +++ b/meta/recipes-core/ncurses/files/0002-configure-reproducible.patch @@ -0,0 +1,35 @@ +From 939c994f3756c2d6d3cab2e6a04d05fa7c2b1d56 Mon Sep 17 00:00:00 2001 +From: Hongxu Jia <hongxu.jia@windriver.com> +Date: Wed, 16 Aug 2017 14:45:27 +0800 +Subject: [PATCH 2/2] configure: reproducible + +"configure" enforces -U for ar flags, breaking deterministic builds. +The flag was added to fix some vaguely specified "recent POSIX binutil +build problems" in 2015. + +Upstream-Status: Pending +Signed-off-by: Juro Bystricky <juro.bystricky@intel.com> + +Rebase to Rebase to 6.0+20170715 + +Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com> +--- + configure | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/configure b/configure +index 7d7d2c1..f444354 100755 +--- a/configure ++++ b/configure +@@ -4458,7 +4458,7 @@ if test "${cf_cv_ar_flags+set}" = set; then + else + + cf_cv_ar_flags=unknown +- for cf_ar_flags in -curvU -curv curv -crv crv -cqv cqv -rv rv ++ for cf_ar_flags in -curv curv -crv crv -cqv cqv -rv rv + do + + # check if $ARFLAGS already contains this choice +-- +1.8.3.1 + |