diff options
-rw-r--r-- | ccdv/ccdv-native.oe | 10 | ||||
-rw-r--r-- | classes/ccdv.oeclass | 8 |
2 files changed, 14 insertions, 4 deletions
diff --git a/ccdv/ccdv-native.oe b/ccdv/ccdv-native.oe index e69de29bb2..cf93d62844 100644 --- a/ccdv/ccdv-native.oe +++ b/ccdv/ccdv-native.oe @@ -0,0 +1,10 @@ +include ccdv.oe +inherit native + +do_stage () { + install -m 0755 ccdv ${STAGING_BINDIR}/ +} + +do_install () { + : +} 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): |