diff options
author | Jeff Hatch <jhatch@multitech.com> | 2020-06-15 12:01:01 -0500 |
---|---|---|
committer | Jeff Hatch <jhatch@multitech.com> | 2020-06-15 12:01:01 -0500 |
commit | 612ffa7c85d856c9706064e62448a3debe5c3379 (patch) | |
tree | 7ce893519ee65180783ef3c248bd04c6f3f817c5 /recipes-extended/bash/bash-4.2/mkbuiltins_have_stringize.patch | |
parent | 0a3f99fc26efa34e65d0105ae18888bd750e5ab6 (diff) | |
parent | a117c7a2ccc99c9903764658fc3640e06ffe4661 (diff) | |
download | meta-mlinux-612ffa7c85d856c9706064e62448a3debe5c3379.tar.gz meta-mlinux-612ffa7c85d856c9706064e62448a3debe5c3379.tar.bz2 meta-mlinux-612ffa7c85d856c9706064e62448a3debe5c3379.zip |
Merge branch 'udev-rules-refactoring' to better reflect architecture dependencies in architecture specific layers.
Diffstat (limited to 'recipes-extended/bash/bash-4.2/mkbuiltins_have_stringize.patch')
-rw-r--r-- | recipes-extended/bash/bash-4.2/mkbuiltins_have_stringize.patch | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/recipes-extended/bash/bash-4.2/mkbuiltins_have_stringize.patch b/recipes-extended/bash/bash-4.2/mkbuiltins_have_stringize.patch deleted file mode 100644 index a9391d6..0000000 --- a/recipes-extended/bash/bash-4.2/mkbuiltins_have_stringize.patch +++ /dev/null @@ -1,26 +0,0 @@ -On hosts with FORTIFY_SOURCES, stringize support is required, as it's used by -the macros to wrap functions (e.g. read and open in unistd.h). Those wrappers -use the STRING() macro from unistd.h. A header in the bash sources overrides -the unistd.h macro to 'x' when HAVE_STRINGIZE is not defined, causing the -wrappers to generate calls to 'xread' and 'xopen', which do not exist, -resulting in a failure to link. - -Assume we have stringize support when cross-compiling, which works around the -issue. - -It may be best for upstream to either give up on supporting compilers without -stringize support, or to not define STRING() at all when FORTIFY_SOURCES is -defined, letting the unistd.h one be used, instead. - -Upstream-Status: Pending - ---- bash-4.2.orig/builtins/mkbuiltins.c -+++ bash-4.2/builtins/mkbuiltins.c -@@ -28,6 +28,7 @@ - # define HAVE_STDLIB_H - - # define HAVE_RENAME -+# define HAVE_STRINGIZE - #endif /* CROSS_COMPILING */ - - #if defined (HAVE_UNISTD_H) |