diff options
author | sweeaun <swee.aun.khor@intel.com> | 2017-07-05 16:56:37 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-07-08 13:34:46 +0100 |
commit | 0224083dae22a0bd43f0c17626fe7f98ba9d3842 (patch) | |
tree | b75f68fac8b16faecce0793c44f666de009ee27e /meta/recipes-devtools/perl/perl_5.24.1.bb | |
parent | 4e0b857484105fbccb22fb1321c58636bdc4a402 (diff) | |
download | poky-0224083dae22a0bd43f0c17626fe7f98ba9d3842.tar.gz |
perl: Support musl-x32 build
Existing musl fixups in perl recipe doesn't cover linux-muslx32.
This is fixed to support musl-x32 build.
(From OE-Core rev: 4a50250edb48510fa6382b2700a39a74847d287b)
Signed-off-by: sweeaun <swee.aun.khor@intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/perl/perl_5.24.1.bb')
-rw-r--r-- | meta/recipes-devtools/perl/perl_5.24.1.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-devtools/perl/perl_5.24.1.bb b/meta/recipes-devtools/perl/perl_5.24.1.bb index b0ceb84912..95d9694005 100644 --- a/meta/recipes-devtools/perl/perl_5.24.1.bb +++ b/meta/recipes-devtools/perl/perl_5.24.1.bb | |||
@@ -125,7 +125,7 @@ do_configure() { | |||
125 | done | 125 | done |
126 | 126 | ||
127 | # Fixups for musl | 127 | # Fixups for musl |
128 | if [ "${TARGET_OS}" = "linux-musl" -o "${TARGET_OS}" = "linux-musleabi" ]; then | 128 | if [ "${TARGET_OS}" = "linux-musl" -o "${TARGET_OS}" = "linux-musleabi" -o "${TARGET_OS}" = "linux-muslx32" ]; then |
129 | sed -i -e "s,\(d_libm_lib_version=\)'define',\1'undef',g" \ | 129 | sed -i -e "s,\(d_libm_lib_version=\)'define',\1'undef',g" \ |
130 | -e "s,\(d_stdio_ptr_lval=\)'define',\1'undef',g" \ | 130 | -e "s,\(d_stdio_ptr_lval=\)'define',\1'undef',g" \ |
131 | -e "s,\(d_stdio_ptr_lval_sets_cnt=\)'define',\1'undef',g" \ | 131 | -e "s,\(d_stdio_ptr_lval_sets_cnt=\)'define',\1'undef',g" \ |