diff options
author | Armin Kuster <akuster808@gmail.com> | 2017-01-28 12:09:53 -0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2017-02-13 18:43:24 +0100 |
commit | a0f5552df55aa1fae5fba5622487b436c41f8cdf (patch) | |
tree | ce9422cb4c93a51888b6f20dd72cb05759817673 /meta-perl | |
parent | dc1d8fad10b5d66d9d0637e607cbb4c5ea078f92 (diff) | |
download | meta-openembedded-contrib-a0f5552df55aa1fae5fba5622487b436c41f8cdf.tar.gz |
libnet-ssleay-perl: fix build error
../../libexec/i586-oe-linux/gcc/i586-oe-linux/6.3.0/ld: cannot find -lssl -lcrypto -lz
| collect2: error: ld returned 1 exit status
| Makefile:492: recipe for target 'blib/arch/auto/Net/SSLeay/SSLeay.so' failed
| make: *** [blib/arch/auto/Net/SSLeay/SSLeay.so] Error 1
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-perl')
-rw-r--r-- | meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb b/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb index cfd6f513010..f347942665b 100644 --- a/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb +++ b/meta-perl/recipes-perl/libnet/libnet-ssleay-perl_1.65.bb @@ -32,8 +32,7 @@ inherit cpan ptest EXTRA_CPANFLAGS = "LIBS='-L=${STAGING_LIBDIR} -L=${STAGING_BASELIBDIR}' \ INC=-I=${STAGING_INCDIR} \ - 'EXTRALIBS=-lssl -lcrypto -lz' \ - 'LDLOADLIBS=-lssl -lcrypto -lz' \ + '-lssl -lcrypto -lz' \ " do_configure_prepend() { |