diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-01 23:59:59 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-02 15:31:03 +0000 |
commit | 044324465bd54d53ae768f3c1e7468ae0e0c6200 (patch) | |
tree | 6a9357ec0a1d8d69b1bdea54bd06d5dba3c70cb7 /meta/recipes-devtools/dpkg | |
parent | 2c4b1675eb3c8c599e3b7f33e459aa608c2b93f2 (diff) | |
download | openembedded-core-044324465bd54d53ae768f3c1e7468ae0e0c6200.tar.gz openembedded-core-044324465bd54d53ae768f3c1e7468ae0e0c6200.tar.bz2 openembedded-core-044324465bd54d53ae768f3c1e7468ae0e0c6200.zip |
dpkg-native: Fix perl path
The path to the native perl was incorrect leading to rootfs failures. This
patch corrects that problem.
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/dpkg')
-rw-r--r-- | meta/recipes-devtools/dpkg/dpkg.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/dpkg/dpkg.inc b/meta/recipes-devtools/dpkg/dpkg.inc index bf345d63d8..2aecff5d26 100644 --- a/meta/recipes-devtools/dpkg/dpkg.inc +++ b/meta/recipes-devtools/dpkg/dpkg.inc @@ -2,7 +2,7 @@ DESCRIPTION = "Package maintenance system for Debian." LICENSE = "GPL" SECTION = "base" -INC_PR = "r11" +INC_PR = "r15" SRC_URI = "${DEBIAN_MIRROR}/main/d/dpkg/dpkg_${PV}.tar.bz2 \ file://ignore_extra_fields.patch" @@ -19,6 +19,7 @@ PARALLEL_MAKE = "" inherit autotools gettext perlnative export PERL_LIBDIR = "${libdir}/perl" +PERL_LIBDIR_virtclass-native = "${libdir}/perl-native/perl" EXTRA_OECONF = "--without-static-progs \ --without-dselect \ |