diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-22 16:07:43 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-06-28 13:55:39 +0100 |
commit | cc3455fd9c7dfab40eff22d502fa144ef0bd231b (patch) | |
tree | 253e01a53c202f0c4dd7e970491c08af462e39fb /meta | |
parent | 35e15c2d9204b3a055a9b25491500bcf58547f67 (diff) | |
download | poky-cc3455fd9c7dfab40eff22d502fa144ef0bd231b.tar.gz |
base.bbclass: Drop old style SRCDATE handling, we have pn- overrides now
(From OE-Core rev: 0e88b873e758c158cde11009a8c6f9ca5f7a63dc)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/base.bbclass | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index 119b052f3f..4681489bb4 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -303,11 +303,6 @@ python () { | |||
303 | bb.note("SKIPPING %s because it's %s" % (pn, this_license)) | 303 | bb.note("SKIPPING %s because it's %s" % (pn, this_license)) |
304 | raise bb.parse.SkipPackage("incompatible with license %s" % this_license) | 304 | raise bb.parse.SkipPackage("incompatible with license %s" % this_license) |
305 | 305 | ||
306 | # OBSOLETE in bitbake 1.7.4 | ||
307 | srcdate = bb.data.getVar('SRCDATE_%s' % pn, d, 1) | ||
308 | if srcdate != None: | ||
309 | bb.data.setVar('SRCDATE', srcdate, d) | ||
310 | |||
311 | use_nls = bb.data.getVar('USE_NLS_%s' % pn, d, 1) | 306 | use_nls = bb.data.getVar('USE_NLS_%s' % pn, d, 1) |
312 | if use_nls != None: | 307 | if use_nls != None: |
313 | bb.data.setVar('USE_NLS', use_nls, d) | 308 | bb.data.setVar('USE_NLS', use_nls, d) |