]> pilppa.org Git - familiar-h63xx-build.git/commitdiff
image_ipk.bbclass: fix locale feed locations
authorRene Wagner <rw@handhelds.org>
Thu, 27 Jul 2006 18:30:45 +0000 (20:30 +0200)
committerRene Wagner <rw@handhelds.org>
Thu, 27 Jul 2006 18:30:45 +0000 (20:30 +0200)
Signed-off-by: Rene Wagner <rw@handhelds.org>
org.handhelds.familiar/classes/image_ipk.bbclass

index d42134f8669912c11fb85c9a254c5b7f60be3c0c..bb99c12a1b1f3746b731e4ac11d9be706550e707 100644 (file)
@@ -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"