diff options
author | Ming Liu <ming.liu@windriver.com> | 2013-05-29 10:09:54 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-05-29 22:17:01 +0100 |
commit | 0f99d7fed094a59d2c5c01c83ea38dc852aadf6b (patch) | |
tree | 5fa67d2fab98595bafeba17ba147f56603d88848 /meta/recipes-devtools | |
parent | 1582975cd89b0b71c93913f07648c67f2b18bc99 (diff) | |
download | openembedded-core-0f99d7fed094a59d2c5c01c83ea38dc852aadf6b.tar.gz openembedded-core-0f99d7fed094a59d2c5c01c83ea38dc852aadf6b.tar.bz2 openembedded-core-0f99d7fed094a59d2c5c01c83ea38dc852aadf6b.zip |
dpkg-native: Fix native perl path
The path to the native perl was incorrect leading to rootfs failures. This
patch corrects that problem, it's a complementary fix for commit:04432446.
Signed-off-by: Ming Liu <ming.liu@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/dpkg/dpkg.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc index 619777701f..5fcf9bcb47 100644 --- a/meta/recipes-devtools/dpkg/dpkg.inc +++ b/meta/recipes-devtools/dpkg/dpkg.inc @@ -18,6 +18,9 @@ PARALLEL_MAKE = "" inherit autotools gettext perlnative pkgconfig +export PERL = "${bindir}/perl" +PERL_class-native = "${STAGING_BINDIR_NATIVE}/perl-native/perl" + export PERL_LIBDIR = "${libdir}/perl" PERL_LIBDIR_class-native = "${libdir}/perl-native/perl" |