diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2007-04-27 02:06:22 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2007-04-27 02:06:22 +0000 |
commit | bf3453c3ea3858a857d44c5cbc4f4a48069652da (patch) | |
tree | 24591813c9288312015cea30a7165dd760ece97a /packages/perl/libipc-sharelite-perl_0.09.bb | |
parent | f90b1322d610a95421df8e17eb91f384fd2e057a (diff) |
perl 5.8.8/cpan: Fix the installation paths for cpan modules. The installed
files for perl modules built using cpan will end up in different places
depending on which version of perl they are being built with. Modules that
explicitly set various FILES_ values were using the paths that are only
valid for the older versions of perl. Calculate and set the correct path in
cpan.bbclass and use that in the FILES_ variables so that it'll be correct
for all versions of perl.
Diffstat (limited to 'packages/perl/libipc-sharelite-perl_0.09.bb')
-rw-r--r-- | packages/perl/libipc-sharelite-perl_0.09.bb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/perl/libipc-sharelite-perl_0.09.bb b/packages/perl/libipc-sharelite-perl_0.09.bb index cd7c19fb2a..acb280b111 100644 --- a/packages/perl/libipc-sharelite-perl_0.09.bb +++ b/packages/perl/libipc-sharelite-perl_0.09.bb @@ -1,7 +1,7 @@ DESCRIPTION = "IPC::ShareLite - Light-weight interface to shared memory" SECTION = "libs" LICENSE = "Artistic|GPL" -PR = "r7" +PR = "r8" SRC_URI = "http://search.cpan.org/CPAN/authors/id/M/MA/MAURICE/IPC-ShareLite-${PV}.tar.gz" @@ -9,7 +9,7 @@ S = "${WORKDIR}/IPC-ShareLite-${PV}" inherit cpan -FILES_${PN} = "${libdir}/perl5/*/*/auto/IPC/ShareLite/* \ - ${libdir}/perl5/*/*/auto/IPC/ShareLite/.packlist \ - ${libdir}/perl5/*/*/IPC" -FILES_${PN}-dbg += "${libdir}/perl5/*/*/auto/IPC/ShareLite/.debug" +FILES_${PN} = "${PERLLIBDIRS}/auto/IPC/ShareLite/* \ + ${PERLLIBDIRS}/auto/IPC/ShareLite/.packlist \ + ${PERLLIBDIRS}/IPC" +FILES_${PN}-dbg += "${PERLLIBDIRS}/auto/IPC/ShareLite/.debug" |