diff options
author | Khem Raj <raj.khem@gmail.com> | 2018-04-28 00:41:31 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-09 10:47:51 +0100 |
commit | 7d29f786f662d12c5876d7358b86980a65c10dcf (patch) | |
tree | f5e32d62b32386cb366b766df6be8e3d3a18c5f4 /meta/recipes-devtools | |
parent | fd912fec3e20b18d9864830cfef34d6d8f1b3085 (diff) | |
download | poky-7d29f786f662d12c5876d7358b86980a65c10dcf.tar.gz |
perl: Account for libnsl being dropped from glibc
-lnsl needs to be removed even on glibc
(From OE-Core rev: 1d1e2f2c44aa6d02458cec720bee2818cbaa31ff)
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-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 53a426289a..6b16689386 100644 --- a/meta/recipes-devtools/perl/perl_5.24.1.bb +++ b/meta/recipes-devtools/perl/perl_5.24.1.bb | |||
@@ -145,7 +145,6 @@ do_configure() { | |||
145 | -e "s,\(i_fcntl=\)'undef',\1'define',g" \ | 145 | -e "s,\(i_fcntl=\)'undef',\1'define',g" \ |
146 | -e "s,\(h_fcntl=\)'false',\1'true',g" \ | 146 | -e "s,\(h_fcntl=\)'false',\1'true',g" \ |
147 | -e "s,-fstack-protector,-fno-stack-protector,g" \ | 147 | -e "s,-fstack-protector,-fno-stack-protector,g" \ |
148 | -e "s,-lnsl,,g" \ | ||
149 | config.sh-${TARGET_ARCH}-${TARGET_OS} | 148 | config.sh-${TARGET_ARCH}-${TARGET_OS} |
150 | fi | 149 | fi |
151 | 150 | ||
@@ -158,6 +157,7 @@ do_configure() { | |||
158 | -e "s,@BASELIBDIR@,${base_libdir},g" \ | 157 | -e "s,@BASELIBDIR@,${base_libdir},g" \ |
159 | -e "s,@EXECPREFIX@,${exec_prefix},g" \ | 158 | -e "s,@EXECPREFIX@,${exec_prefix},g" \ |
160 | -e 's,@USRBIN@,${bindir},g' \ | 159 | -e 's,@USRBIN@,${bindir},g' \ |
160 | -e "s,-lnsl,,g" \ | ||
161 | config.sh-${TARGET_ARCH}-${TARGET_OS} | 161 | config.sh-${TARGET_ARCH}-${TARGET_OS} |
162 | 162 | ||
163 | case "${TARGET_ARCH}" in | 163 | case "${TARGET_ARCH}" in |