diff options
author | Richard Purdie <richard@openedhand.com> | 2006-02-10 11:43:38 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-02-10 11:43:38 +0000 |
commit | ce241d7e6d8e31411867b5f2127b02c776b39d8a (patch) | |
tree | ebc7996fff58d59f1b55cfb550c29f9708e59586 /bitbake/bin | |
parent | b236090192c018bf8efe8c72019d3d1567b6d158 (diff) | |
download | openembedded-core-ce241d7e6d8e31411867b5f2127b02c776b39d8a.tar.gz openembedded-core-ce241d7e6d8e31411867b5f2127b02c776b39d8a.tar.bz2 openembedded-core-ce241d7e6d8e31411867b5f2127b02c776b39d8a.tar.xz openembedded-core-ce241d7e6d8e31411867b5f2127b02c776b39d8a.zip |
Update to 1.3.3 release of bitbake
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@269 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/bin')
-rwxr-xr-x | bitbake/bin/bitbake | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake index 09417f6ec..b1fd76a4f 100755 --- a/bitbake/bin/bitbake +++ b/bitbake/bin/bitbake @@ -31,7 +31,7 @@ import itertools, optparse parsespin = itertools.cycle( r'|/-\\' ) bbdebug = 0 -__version__ = "1.3.2" +__version__ = "1.3.3" #============================================================================# # BBParsingStatus @@ -461,8 +461,7 @@ class BBCooker: pn = bb.data.getVar('PN', the_data, 1) pv = bb.data.getVar('PV', the_data, 1) pr = bb.data.getVar('PR', the_data, 1) - tmpdir = bb.data.getVar('TMPDIR', the_data, 1) - stamp = '%s/stamps/%s-%s-%s.do_populate_staging' % (tmpdir, pn, pv, pr) + stamp = '%s.do_populate_staging' % bb.data.getVar('STAMP', the_data, 1) if os.path.exists(stamp): (newvers, fn) = preferred_versions[pn] if not fn in eligible: |