1
0
mirror of https://git.yoctoproject.org/poky synced 2026-05-08 05:09:24 +00:00

libxml-parser-perl: Fix bug of empty package of libxml-parser-perl.

Becaues of the error library path definition in cpan-base.class, libxml-parser-perl package is empty.

Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
This commit is contained in:
Jingdong Lu
2010-11-24 12:36:49 +08:00
committed by Richard Purdie
parent 6e4bfac48a
commit 0d5e71e741
+1 -1
View File
@@ -27,7 +27,7 @@ def get_perl_version(d):
# Determine where the library directories are
def perl_get_libdirs(d):
libdir = bb.data.getVar('libdir', d, 1)
libdirs = libdir + '/*/*/perl5'
libdirs = libdir + '/perl5'
return libdirs
def is_target(d):