summaryrefslogtreecommitdiff
path: root/meta/classes/ccdv.bbclass
diff options
context:
space:
mode:
authorPaul Eggleton <paul.eggleton@linux.intel.com>2011-07-15 13:59:17 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-07-19 17:33:56 +0100
commit7416bdaf01daaeb183b1cc8d13a043e244c464e1 (patch)
treead39861515dc284f7b2914bfb2513d0e5c75fc47 /meta/classes/ccdv.bbclass
parent7c84b6f2cfaa12d631e34d29625436b4353c8c35 (diff)
downloadopenembedded-core-7416bdaf01daaeb183b1cc8d13a043e244c464e1.tar.gz
openembedded-core-7416bdaf01daaeb183b1cc8d13a043e244c464e1.tar.bz2
openembedded-core-7416bdaf01daaeb183b1cc8d13a043e244c464e1.tar.xz
openembedded-core-7416bdaf01daaeb183b1cc8d13a043e244c464e1.zip
classes: remove obsolete classes
All of these classes are currently unused in oe-core and meta-oe; several are no longer in use even in OE classic: * base_srpm.bbclass * ccdv.bbclass * flow-lossage.bbclass * patcher.bbclass * singlemachine.bbclass * tmake.bbclass * xlibs.bbclass patcher.bbclass and singlemachine.bbclass probably still work but it is unlikely that anyone is still using them. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
Diffstat (limited to 'meta/classes/ccdv.bbclass')
-rw-r--r--meta/classes/ccdv.bbclass21
1 files changed, 0 insertions, 21 deletions
diff --git a/meta/classes/ccdv.bbclass b/meta/classes/ccdv.bbclass
deleted file mode 100644
index 8c8306cbf..000000000
--- a/meta/classes/ccdv.bbclass
+++ /dev/null
@@ -1,21 +0,0 @@
-python () {
- if bb.data.getVar('PN', d, 1) in ['ccdv-native']:
- if not bb.data.getVar('INHIBIT_DEFAULT_DEPS', d, 1):
- bb.data.setVar("DEPENDS", '%s %s' % ("ccdv-native", bb.data.getVar("DEPENDS", d, 1) or ""), d)
- bb.data.setVar("CC", '%s %s' % ("ccdv", bb.data.getVar("CC", d, 1) or ""), d)
- bb.data.setVar("BUILD_CC", '%s %s' % ("ccdv", bb.data.getVar("BUILD_CC", d, 1) or ""), d)
- bb.data.setVar("CCLD", '%s %s' % ("ccdv", bb.data.getVar("CCLD", d, 1) or ""), d)
-}
-
-def quiet_libtool(bb,d):
- deps = (bb.data.getVar('DEPENDS', d, 1) or "").split()
- if 'libtool-cross' in deps:
- return "'LIBTOOL=${STAGING_BINDIR_NATIVE}/${HOST_SYS}-libtool --silent'"
- elif 'libtool-native' in deps:
- return "'LIBTOOL=${B}/${HOST_SYS}-libtool --silent'"
- else:
- return ""
-
-CCDV = "ccdv"
-EXTRA_OEMAKE_append = " ${@quiet_libtool(bb,d)}"
-MAKE += "-s"