libxml-parser-perl: Fix bug of empty package of libxml-parser-perl.
authorJingdong Lu <jingdong.lu@windriver.com>
Wed, 24 Nov 2010 04:36:49 +0000 (12:36 +0800)
committerRichard Purdie <rpurdie@linux.intel.com>
Fri, 10 Dec 2010 23:13:00 +0000 (23:13 +0000)
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>
meta/classes/cpan-base.bbclass

index 3175248..1d13ff3 100644 (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):