diff options
author | Jamie Lenehan <lenehan@twibble.org> | 2007-05-02 02:10:55 +0000 |
---|---|---|
committer | Jamie Lenehan <lenehan@twibble.org> | 2007-05-02 02:10:55 +0000 |
commit | e9d12e48f9c41ee5c0f9ddb82c387a5ce2a17c9a (patch) | |
tree | b9f5902fe05c16e4b478b4d28e5eb76cc88856a3 | |
parent | 9c4f5f2745e24cf8e99e63e345ed8408f0a7c06b (diff) |
cpan.bbclass: Building cpan modules needs to depend on both perl and
perl-native. They are built with perl-native but use the
configuration information from perl. This issue wasn't showing up
with bitbake 1.6 but is with 1.8.2 where perl is configured and
compiled perl but not staged prior to moving on.
-rw-r--r-- | classes/cpan.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/cpan.bbclass b/classes/cpan.bbclass index 687dbcd1cb..410a1c6502 100644 --- a/classes/cpan.bbclass +++ b/classes/cpan.bbclass @@ -4,7 +4,7 @@ FILES_${PN} += '${libdir}/perl5 ${datadir}/perl5' EXTRA_CPANFLAGS ?= "" -DEPENDS += "perl-native" +DEPENDS += "perl perl-native" RDEPENDS += "perl" # Determine the staged version of perl from the perl configuration file |