diff options
author | Rene Wagner <rw@handhelds.org> | 2006-07-27 20:30:45 +0200 |
---|---|---|
committer | Rene Wagner <rw@handhelds.org> | 2006-07-27 20:30:45 +0200 |
commit | c22a5de5784a1bb66caf54d6828dd44b705a211e (patch) | |
tree | d1ca9d805efc804c547fe4e9308a249b03361730 | |
parent | 253608582b3f7eab91b39c1d0b8c57a00da8e6d9 (diff) |
image_ipk.bbclass: fix locale feed locations
Signed-off-by: Rene Wagner <rw@handhelds.org>
-rw-r--r-- | org.handhelds.familiar/classes/image_ipk.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/org.handhelds.familiar/classes/image_ipk.bbclass b/org.handhelds.familiar/classes/image_ipk.bbclass index d42134f..bb99c12 100644 --- a/org.handhelds.familiar/classes/image_ipk.bbclass +++ b/org.handhelds.familiar/classes/image_ipk.bbclass @@ -84,7 +84,7 @@ python __anonymous() { cmds += "# To point ipkg at packages for your locale, replace <my_locale> with the\n" cmds += "# locale code in the template below and remove the leading '#' characters.\n\n" for f in feeds: - cmds += "# src/gz %s-locale-<my_locale> %s/%s/locale/<my_locale>\n" % (f, pfx, f) + cmds += "# src/gz %s-locale-<my_locale> %s/%s/%s/locale/<my_locale>\n" % (f, pfx, c, f) # add feed for each IMAGE_LINGUA linguas = bb.data.getVar("IMAGE_LINGUAS", d, 1).split() @@ -92,7 +92,7 @@ python __anonymous() { fst = l.split('-')[0] cmds += "\n# %s locale feeds\n" % fst for f in feeds: - cmds += "src/gz %s-locale-%s %s/%s/locale/%s\n" % (f, fst, pfx, f, fst) + cmds += "src/gz %s-locale-%s %s/%s/%s/locale/%s\n" % (f, fst, pfx, c, f, fst) cmds += "\nEOF\n" |