diff options
author | Mark Hatle <mark.hatle@windriver.com> | 2012-09-29 19:19:13 -0500 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-10-02 11:15:35 +0100 |
commit | acc988272b4e74a9ad1e6da5af5b2d208584197b (patch) | |
tree | e9f6139325ad60ebd727ff8a401c1ad9939d5163 /meta/recipes-extended/pigz/pigz.inc | |
parent | bfb2906206158748d0be33baf7984cf885756da1 (diff) | |
download | openembedded-core-acc988272b4e74a9ad1e6da5af5b2d208584197b.tar.gz openembedded-core-acc988272b4e74a9ad1e6da5af5b2d208584197b.tar.bz2 openembedded-core-acc988272b4e74a9ad1e6da5af5b2d208584197b.zip |
Cleanup: fix PN == BPN cases
When building target packages, it used to be enought to check for PN == BPN, however
with the multilib configurations, this can lead to subtle errors. Change instances
of PN == BPN, to ${CLASSOVERRIDE} == 'class-target'.
Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/pigz/pigz.inc')
-rw-r--r-- | meta/recipes-extended/pigz/pigz.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/meta/recipes-extended/pigz/pigz.inc b/meta/recipes-extended/pigz/pigz.inc index be37e8a317..3721c9786e 100644 --- a/meta/recipes-extended/pigz/pigz.inc +++ b/meta/recipes-extended/pigz/pigz.inc @@ -7,6 +7,8 @@ HOMEPAGE = "http://zlib.net/pigz/" SECTION = "console/utils" LICENSE = "Zlib" +PR = "r1" + SRC_URI = "http://zlib.net/pigz/pigz-${PV}.tar.gz \ file://ldflags.patch" @@ -15,7 +17,7 @@ PROVIDES_virtclass-native += "gzip-native" DEPENDS = "zlib" do_install () { - if [ "${PN}" = "${BPN}" ] ; then + if [ "${CLASSOVERRIDE}" = "class-target" ] ; then # Install files into /bin (FHS), which is typical place for gzip install -d ${D}${base_bindir} install ${B}/pigz ${D}${base_bindir}/gzip |