diff options
author | Chris Larson <clarson@kergoth.com> | 2004-04-01 19:08:04 +0000 |
---|---|---|
committer | Chris Larson <clarson@kergoth.com> | 2004-04-01 19:08:04 +0000 |
commit | b5a7b2f50f75f480f240bec89101d5b11adcecf5 (patch) | |
tree | aa99d31a12ab5b46e6220681a1198ba0cba10da8 /ipkg/ipkg_0.99.84.oe | |
parent | 7d0f4d1ff2349647def5f78e6f07d4ce0bc7fffc (diff) |
Merge openembedded@openembedded.bkbits.net:packages
into linux.local:/home/kergoth/code/packages
2004/04/01 21:08:03+02:00 vanille.de!mickey
eliminate the usage of the deprecated 'string' module. please don't use it anymore. see diff for how to rewrite this stuff
BKrev: 406c6894YHeawcERN76y3eOgFVsoMw
Diffstat (limited to 'ipkg/ipkg_0.99.84.oe')
-rw-r--r-- | ipkg/ipkg_0.99.84.oe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ipkg/ipkg_0.99.84.oe b/ipkg/ipkg_0.99.84.oe index 6ce0cf3fdb..d6de6c5e04 100644 --- a/ipkg/ipkg_0.99.84.oe +++ b/ipkg/ipkg_0.99.84.oe @@ -3,7 +3,7 @@ LICENSE = "GPL" PROVIDES = "virtual/ipkg" DEPENDS = "virtual/libc" -SRC_URI = "cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=familiar/dist/ipkg;tag=${@'V' + string.replace(oe.data.getVar('PV',d,1), '.', '-')}" +SRC_URI = "cvs://anoncvs:anoncvs@192.58.209.91/cvs;module=familiar/dist/ipkg;tag=${@'V' + oe.data.getVar('PV',d,1).replace('.', '-')}" S = "${WORKDIR}/ipkg/C" inherit autotools |