summaryrefslogtreecommitdiffstats
path: root/meta/conf/bitbake.conf
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-01-02 14:01:27 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-01-02 14:01:27 +0000
commit61d8ea7a140e2e5bf77839c8ee914ae903c83de8 (patch)
tree65e93ad23a0dbc9a95c1f3795a480240c710c808 /meta/conf/bitbake.conf
parent62f16a6578f5fc11dad267f6f19e9d6e87fa13dc (diff)
downloadpoky-61d8ea7a140e2e5bf77839c8ee914ae903c83de8.tar.gz
bitbake.conf: In SPECIAL_PKGSUFFIX -cross-sdk must come before -cross and -sdk or it doesn't work as expected
Diffstat (limited to 'meta/conf/bitbake.conf')
-rw-r--r--meta/conf/bitbake.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 0c03cc4ec4..d6744a487e 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -147,7 +147,7 @@ P = "${PN}-${PV}"
147# Base package name 147# Base package name
148# Automatically derives "foo" from "foo-native", "foo-cross" or "foo-initial" 148# Automatically derives "foo" from "foo-native", "foo-cross" or "foo-initial"
149# otherwise it is the same as PN and P 149# otherwise it is the same as PN and P
150SPECIAL_PKGSUFFIX = "-native -cross -sdk -cross-sdk -initial -intermediate" 150SPECIAL_PKGSUFFIX = "-native -cross-sdk -cross -sdk -initial -intermediate"
151BPN = "${@base_prune_suffix(bb.data.getVar('PN', d, True), bb.data.getVar('SPECIAL_PKGSUFFIX', d, True).split(), d)}" 151BPN = "${@base_prune_suffix(bb.data.getVar('PN', d, True), bb.data.getVar('SPECIAL_PKGSUFFIX', d, True).split(), d)}"
152BP = "${BPN}-${PV}" 152BP = "${BPN}-${PV}"
153 153