summaryrefslogtreecommitdiff
path: root/classes
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2004-11-17 02:57:45 +0000
committerChris Larson <clarson@kergoth.com>2004-11-17 02:57:45 +0000
commit39063d1e2f65f110505ff215eae41df02f5c5260 (patch)
treeb093ee1356612e9b91f8122485af387b28087d4b /classes
parent623de7130b9c2567b530877460f4c6321c87b0b8 (diff)
Attempt to unbork the ccdv bits a bit.
BKrev: 419abe293ZLKzrxBVQKc5GFfkeFD6w
Diffstat (limited to 'classes')
-rw-r--r--classes/ccdv.oeclass8
1 files changed, 4 insertions, 4 deletions
diff --git a/classes/ccdv.oeclass b/classes/ccdv.oeclass
index d2af78b9e1..24a6cb0892 100644
--- a/classes/ccdv.oeclass
+++ b/classes/ccdv.oeclass
@@ -1,10 +1,10 @@
python () {
- if oe.data.getVar('PN', d, 1) != 'ccdv-native':
+ if oe.data.getVar('PN', d, 1) in ['ccdv-native']:
if not oe.data.getVar('INHIBIT_DEFAULT_DEPS', d, 1):
oe.data.setVar("DEPENDS", '%s %s' % ("ccdv-native", oe.data.getVar("DEPENDS", d, 1) or ""), d)
- oe.data.setVar("CC", '%s %s' % ("ccdv", oe.data.getVar("CC", d, 1) or ""), d)
- oe.data.setVar("BUILD_CC", '%s %s' % ("ccdv", oe.data.getVar("BUILD_CC", d, 1) or ""), d)
- oe.data.setVar("CCLD", '%s %s' % ("ccdv", oe.data.getVar("CCLD", d, 1) or ""), d)
+ oe.data.setVar("CC", '%s %s' % ("ccdv", oe.data.getVar("CC", d, 1) or ""), d)
+ oe.data.setVar("BUILD_CC", '%s %s' % ("ccdv", oe.data.getVar("BUILD_CC", d, 1) or ""), d)
+ oe.data.setVar("CCLD", '%s %s' % ("ccdv", oe.data.getVar("CCLD", d, 1) or ""), d)
}
def quiet_libtool(oe,d):