diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2011-12-22 19:01:37 -0600 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-23 17:32:28 +0000 |
commit | 528a2ec8ab53d652d74c51334a40905f009dfd91 (patch) | |
tree | dc3d8f7281748acbae4a967e70948f5316741fc0 /meta | |
parent | c01a92408d267bcc5365bf8495035f6021a49ced (diff) | |
download | openembedded-core-528a2ec8ab53d652d74c51334a40905f009dfd91.tar.gz openembedded-core-528a2ec8ab53d652d74c51334a40905f009dfd91.tar.bz2 openembedded-core-528a2ec8ab53d652d74c51334a40905f009dfd91.zip |
rpm_5.4.0: Fix configuration issue with native/nativesdk
RPM's configuration assumes if the prefix isn't /usr or /usr/local
that you really want the DB in $prefix/var -- we want it in
$localstatedir.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/rpm/rpm_5.4.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-devtools/rpm/rpm_5.4.0.bb b/meta/recipes-devtools/rpm/rpm_5.4.0.bb index 2c0c076ebd..122d3a922a 100644 --- a/meta/recipes-devtools/rpm/rpm_5.4.0.bb +++ b/meta/recipes-devtools/rpm/rpm_5.4.0.bb @@ -45,7 +45,7 @@ LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1" DEPENDS = "bzip2 zlib db openssl elfutils expat libpcre attr acl popt ${extrarpmdeps}" extrarpmdeps = "python perl" extrarpmdeps_virtclass-native = "file-native" -PR = "r26" +PR = "r27" # rpm2cpio is a shell script, which is part of the rpm src.rpm. It is needed # in order to extract the distribution SRPM into a format we can extract... @@ -347,6 +347,7 @@ do_configure() { ./autogen.sh + export varprefix=${localstatedir} oe_runconf } |