diff options
author | Patrick Williams <patrick@stwcx.xyz> | 2016-09-13 22:14:18 -0500 |
---|---|---|
committer | Patrick Williams <patrick@stwcx.xyz> | 2016-09-16 02:31:35 +0000 |
commit | 77bf1155f7e14b1323b30a4f67ba79ff8528b92d (patch) | |
tree | c4f8a9e5c4ff7b827891e641ad87d2f5299ee4e6 /meta-phosphor/common/recipes-devtools/python | |
parent | dd9896ecf9d9d3b9ac448ed269e8585652aecfe8 (diff) | |
download | talos-openbmc-77bf1155f7e14b1323b30a4f67ba79ff8528b92d.tar.gz talos-openbmc-77bf1155f7e14b1323b30a4f67ba79ff8528b92d.zip |
bottle: fix python-bottle-app package
Since python-bottle-app is selecting items from /usr/bin, it must
be before python-bottle in the final PACKAGE list, otherwise
python-bottle gets the files first. Use PACKAGE_BEFORE_PN to
ensure that is the case.
Change-Id: Ia0af342c1b6f4963da126a327b96d956755733ef
Signed-off-by: Patrick Williams <patrick@stwcx.xyz>
Diffstat (limited to 'meta-phosphor/common/recipes-devtools/python')
-rw-r--r-- | meta-phosphor/common/recipes-devtools/python/python-bottle.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-phosphor/common/recipes-devtools/python/python-bottle.inc b/meta-phosphor/common/recipes-devtools/python/python-bottle.inc index 37526f7eb..ed4744df3 100644 --- a/meta-phosphor/common/recipes-devtools/python/python-bottle.inc +++ b/meta-phosphor/common/recipes-devtools/python/python-bottle.inc @@ -20,10 +20,10 @@ RDEPENDS_${PN} += " \ " PROVIDES += "${PN}-app" -PACKAGES += "${PN}-app" +PACKAGE_BEFORE_PN += "${PN}-app" SUMMARY_${PN}-app = "${SRCNAME} app" RDEPENDS_${PN}-app = "${PN}" -FILES_${PN}-app = "${bindir}/bottle.py" +FILES_${PN}-app = "${bindir}/bottle.py*" BBCLASSEXTEND = "nativesdk" |