summaryrefslogtreecommitdiff
path: root/meta/recipes-core/ncurses/files/fix-cflags-mangle.patch
diff options
context:
space:
mode:
authorHongxu Jia <hongxu.jia@windriver.com>2017-08-16 04:31:22 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-08-18 10:40:08 +0100
commita4ad0703e1209fee6cd89bf74088931785c4d8c7 (patch)
treea05d439b4ddfc788c1490b714926f400ef324907 /meta/recipes-core/ncurses/files/fix-cflags-mangle.patch
parentb90037da8754009ca7cf2ab996b46b3dae1eb204 (diff)
downloadopenembedded-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/fix-cflags-mangle.patch')
-rw-r--r--meta/recipes-core/ncurses/files/fix-cflags-mangle.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/meta/recipes-core/ncurses/files/fix-cflags-mangle.patch b/meta/recipes-core/ncurses/files/fix-cflags-mangle.patch
deleted file mode 100644
index e9447c5b81..0000000000
--- a/meta/recipes-core/ncurses/files/fix-cflags-mangle.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-configure has a piece of logic to detect users "abusing" CC to hold compiler
-flags (which we do). It also has logic to "correct" this by moving the flags
-from CC to CFLAGS, but the sed only handles a single argument in CC.
-
-Replace the sed with awk to filter out all words that start with a hyphen.
-
-Upstream-Status: Pending
-Signed-off-by: Ross Burton <ross.burton@intel.com>
-
-diff --git a/configure b/configure
-index 7f31208..1a29cfc 100755
---- a/configure
-+++ b/configure
-@@ -2191,2 +2191,2 @@ echo "$as_me: WARNING: your environment misuses the CC variable to hold CFLAGS/C
-- cf_flags=`echo "$CC" | sed -e 's/^.*[ ]\(-[^ ]\)/\1/'`
-- CC=`echo "$CC " | sed -e 's/[ ]-[^ ].*$//' -e 's/[ ]*$//'`
-+ cf_flags=`echo "$CC" | awk 'BEGIN{ORS=" ";RS=" "} /^-.+/ {print $1}'`
-+ CC=`echo "$CC " | awk 'BEGIN{ORS=" ";RS=" "} /^[^-].+/ {print $1}'`