diff options
author | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-19 14:27:52 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openedhand.com> | 2008-03-19 14:27:52 +0000 |
commit | 60687460e53b7a3474956d6b004069ea5862518f (patch) | |
tree | e14342d8d94180214ff43a49e30c60699e387ade | |
parent | 322fe395c8e9451bb9b9ab5b7600a8c7ca4e8239 (diff) | |
download | openembedded-core-60687460e53b7a3474956d6b004069ea5862518f.tar.gz openembedded-core-60687460e53b7a3474956d6b004069ea5862518f.tar.bz2 openembedded-core-60687460e53b7a3474956d6b004069ea5862518f.zip |
update-alternatives-cworth: switched to opkg
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4051 311d38ba-8fff-0310-9ca6-ca027cbcb966
3 files changed, 5 insertions, 5 deletions
diff --git a/meta/packages/update-alternatives/update-alternatives-cworth-native_0.99.154.bb b/meta/packages/update-alternatives/update-alternatives-cworth-native_0.99.154.bb index 5c7b7289ab..b20dab18f1 100644 --- a/meta/packages/update-alternatives/update-alternatives-cworth-native_0.99.154.bb +++ b/meta/packages/update-alternatives/update-alternatives-cworth-native_0.99.154.bb @@ -2,11 +2,11 @@ require update-alternatives-cworth.inc inherit native PROVIDES += "virtual/update-alternatives-native" -RPROVIDES += "update-alternatives-native" +RPROVIDES_${PN} += "update-alternatives-native" do_stage () { install -d ${sbindir} \ - ${libdir}/ipkg/alternatives + ${libdir}/opkg/alternatives install -m 0755 update-alternatives ${sbindir}/update-alternatives } diff --git a/meta/packages/update-alternatives/update-alternatives-cworth.inc b/meta/packages/update-alternatives/update-alternatives-cworth.inc index 5a1cf3e7ed..78d890e6de 100644 --- a/meta/packages/update-alternatives/update-alternatives-cworth.inc +++ b/meta/packages/update-alternatives/update-alternatives-cworth.inc @@ -1,6 +1,6 @@ LICENSE = "GPL" SECTION = "base" -SRC_URI = "${HANDHELDS_CVS};module=familiar/dist/ipkg;tag=${@'V' + bb.data.getVar('PV',d,1).replace('.', '-')}" -S = "${WORKDIR}/ipkg/C" +SRC_URI = "svn://svn.openmoko.org/trunk/src/target/;module=opkg;proto=http" +S = "${WORKDIR}/opkg" PACKAGE_ARCH = "all" PR = "r1" diff --git a/meta/packages/update-alternatives/update-alternatives-cworth_0.99.154.bb b/meta/packages/update-alternatives/update-alternatives-cworth_0.99.154.bb index cf3c8fbc2b..82700f0f95 100644 --- a/meta/packages/update-alternatives/update-alternatives-cworth_0.99.154.bb +++ b/meta/packages/update-alternatives/update-alternatives-cworth_0.99.154.bb @@ -6,7 +6,7 @@ RPROVIDES_${PN} += "update-alternatives" do_install () { install -d ${D}${sbindir} \ ${D}${sysconfdir}/alternatives \ - ${D}${libdir}/ipkg/alternatives + ${D}${libdir}/opkg/alternatives install -m 0755 update-alternatives ${D}${sbindir}/update-alternatives } |