diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2013-02-04 23:06:52 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-06 09:35:01 +0000 |
commit | cf0aa9c4fdae8855803e96b1922d54a2431795d3 (patch) | |
tree | e3e5cfed064f7243885c8e8a57779dbfa5a287b7 /meta/recipes-devtools/opkg/opkg.inc | |
parent | 8abcf2c3541d7fe96d7717cb161812784dca6c66 (diff) | |
download | openembedded-core-cf0aa9c4fdae8855803e96b1922d54a2431795d3.tar.gz openembedded-core-cf0aa9c4fdae8855803e96b1922d54a2431795d3.tar.bz2 openembedded-core-cf0aa9c4fdae8855803e96b1922d54a2431795d3.zip |
ipk: use OPKGLIBDIR in all places
* it's not recommended to change this value, because it breaks upgrade path on target
(all old u-a alternatives are forgot in old OPKGLIBDIR value
* but make it consistent, so if someone really want to change that, then
setting OPKGLIBDIR_distro in distro.conf would be enough
* without this there were at least 4 places to change:
rootfs_ipk: opkglibdir variable (notice that I've removed /opkg from it to correspond
with EXTRA_OECONF option used in opkg recipes
package_ipk: ${target_rootfs}${localstatedir}/lib/opkg/ hardcoded in
package_install_internal_ipk
opkg-collateral: value in lists file
opkg: EXTRA_OECONF for all 3 classes, FILES_libopkg, do_install
* validated with buildhistory that without OPKGLIBDIR explicitly set the
output is the same and that after setting
OPKGLIBDIR_forcevariable := "${libdir}"
everything including empty directory from package_ipk is moved to
libdir
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta/recipes-devtools/opkg/opkg.inc')
-rw-r--r-- | meta/recipes-devtools/opkg/opkg.inc | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/meta/recipes-devtools/opkg/opkg.inc b/meta/recipes-devtools/opkg/opkg.inc index 47458ff350..8d48006d64 100644 --- a/meta/recipes-devtools/opkg/opkg.inc +++ b/meta/recipes-devtools/opkg/opkg.inc @@ -9,7 +9,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ file://src/opkg-cl.c;beginline=1;endline=20;md5=321f658c3f6b6c832e25c8850b5dffba" PE = "1" -INC_PR = "r12" +INC_PR = "r13" # Werror gives all kinds bounds issuses with gcc 4.3.3 do_configure_prepend() { @@ -17,16 +17,19 @@ do_configure_prepend() { } inherit autotools pkgconfig -EXTRA_OECONF += " --disable-gpg \ - --disable-openssl \ - --disable-ssl-curl \ - --disable-curl \ - --disable-sha256" target_localstatedir := "${localstatedir}" -EXTRA_OECONF += "--with-opkglibdir=${localstatedir}/lib" -EXTRA_OECONF_class-native = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" -EXTRA_OECONF_class-nativesdk = "--with-opkglibdir=${target_localstatedir}/lib --disable-gpg --disable-curl --disable-openssl" +OPKGLIBDIR = "${target_localstatedir}/lib" + +SHARED_EXTRA_OECONF = "\ + --with-opkglibdir=${OPKGLIBDIR} \ + --disable-gpg \ + --disable-curl \ + --disable-openssl \ +" +EXTRA_OECONF_class-target = "${SHARED_EXTRA_OECONF} --disable-ssl-curl --disable-sha256" +EXTRA_OECONF_class-native = "${SHARED_EXTRA_OECONF}" +EXTRA_OECONF_class-nativesdk = "${SHARED_EXTRA_OECONF}" PROVIDES += "virtual/update-alternatives" RPROVIDES_update-alternatives-cworth += "update-alternatives" @@ -41,11 +44,11 @@ PACKAGES =+ "libopkg-dev libopkg-staticdev libopkg update-alternatives-cworth" FILES_update-alternatives-cworth = "${bindir}/update-alternatives" FILES_libopkg-dev = "${libdir}/*.la ${libdir}/*.so" FILES_libopkg-staticdev = "${libdir}/*.a" -FILES_libopkg = "${libdir}/*.so.* ${localstatedir}/lib/opkg/" +FILES_libopkg = "${libdir}/*.so.* ${OPKGLIBDIR}/opkg/" do_install_append() { # We need to create the lock directory - install -d ${D}${localstatedir}/lib/opkg + install -d ${D}${OPKGLIBDIR}/opkg } do_install_append_class-native() { |