diff options
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/package_ipk.bbclass | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/classes/package_ipk.bbclass b/meta/classes/package_ipk.bbclass index eb00932336..e7e7d4929b 100644 --- a/meta/classes/package_ipk.bbclass +++ b/meta/classes/package_ipk.bbclass | |||
@@ -48,6 +48,8 @@ python do_package_ipk () { | |||
48 | if os.path.exists(p): | 48 | if os.path.exists(p): |
49 | bb.utils.prunedir(p) | 49 | bb.utils.prunedir(p) |
50 | 50 | ||
51 | recipesource = os.path.basename(d.getVar('FILE', True)) | ||
52 | |||
51 | for pkg in packages.split(): | 53 | for pkg in packages.split(): |
52 | localdata = bb.data.createCopy(d) | 54 | localdata = bb.data.createCopy(d) |
53 | root = "%s/%s" % (pkgdest, pkg) | 55 | root = "%s/%s" % (pkgdest, pkg) |
@@ -212,10 +214,7 @@ python do_package_ipk () { | |||
212 | ctrlfile.write("Replaces: %s\n" % bb.utils.join_deps(rreplaces)) | 214 | ctrlfile.write("Replaces: %s\n" % bb.utils.join_deps(rreplaces)) |
213 | if rconflicts: | 215 | if rconflicts: |
214 | ctrlfile.write("Conflicts: %s\n" % bb.utils.join_deps(rconflicts)) | 216 | ctrlfile.write("Conflicts: %s\n" % bb.utils.join_deps(rconflicts)) |
215 | src_uri = localdata.getVar("SRC_URI", True).strip() or "None" | 217 | ctrlfile.write("Source: %s\n" % recipesource) |
216 | if src_uri: | ||
217 | src_uri = re.sub("\s+", " ", src_uri) | ||
218 | ctrlfile.write("Source: %s\n" % " ".join(src_uri.split())) | ||
219 | ctrlfile.close() | 218 | ctrlfile.close() |
220 | 219 | ||
221 | for script in ["preinst", "postinst", "prerm", "postrm"]: | 220 | for script in ["preinst", "postinst", "prerm", "postrm"]: |