diff options
| author | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
|---|---|---|
| committer | Chris Larson <clarson@kergoth.com> | 2004-12-07 22:05:47 +0000 |
| commit | a780643c4b6aa11e1a36965a69df7116477c7b4c (patch) | |
| tree | 17e81e77bde19931facf9b30fa5b5981df796071 /classes/ccdv.oeclass | |
| parent | 88cce8db7ebf88ab9da2366a2ac21a5a723340b8 (diff) | |
Merge oe-devel@oe-devel.bkbits.net:packages.bb
into handhelds.org:/home/kergoth/code/packages.bb
2004/12/07 04:58:25-06:00 ti.com!kergoth
More updates per the core rename.
2004/12/07 04:46:51-06:00 ti.com!kergoth
Update soundtracker per the core rename.
2004/12/07 04:44:14-06:00 ti.com!kergoth
Merge
2004/12/07 04:42:38-06:00 ti.com!kergoth
Updates per the recent rename of the oe core from 'oe' to 'bitbake'.
BKrev: 41b6293b91LRHSxMOt6WnrZVAdLbFw
Diffstat (limited to 'classes/ccdv.oeclass')
| -rw-r--r-- | classes/ccdv.oeclass | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/classes/ccdv.oeclass b/classes/ccdv.oeclass deleted file mode 100644 index 24a6cb0892..0000000000 --- a/classes/ccdv.oeclass +++ /dev/null @@ -1,21 +0,0 @@ -python () { - 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) -} - -def quiet_libtool(oe,d): - deps = (oe.data.getVar('DEPENDS', d, 1) or "").split() - if 'libtool-cross' in deps: - return "'LIBTOOL=${STAGING_BINDIR}/${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(oe,d)}" -MAKE += "-s" |
