summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-02-10 11:43:38 +0000
committerRichard Purdie <richard@openedhand.com>2006-02-10 11:43:38 +0000
commitce241d7e6d8e31411867b5f2127b02c776b39d8a (patch)
treeebc7996fff58d59f1b55cfb550c29f9708e59586 /bitbake/bin
parentb236090192c018bf8efe8c72019d3d1567b6d158 (diff)
downloadpoky-ce241d7e6d8e31411867b5f2127b02c776b39d8a.tar.gz
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-xbitbake/bin/bitbake5
1 files changed, 2 insertions, 3 deletions
diff --git a/bitbake/bin/bitbake b/bitbake/bin/bitbake
index 09417f6eca..b1fd76a4f1 100755
--- a/bitbake/bin/bitbake
+++ b/bitbake/bin/bitbake
@@ -31,7 +31,7 @@ import itertools, optparse
31parsespin = itertools.cycle( r'|/-\\' ) 31parsespin = itertools.cycle( r'|/-\\' )
32bbdebug = 0 32bbdebug = 0
33 33
34__version__ = "1.3.2" 34__version__ = "1.3.3"
35 35
36#============================================================================# 36#============================================================================#
37# BBParsingStatus 37# BBParsingStatus
@@ -461,8 +461,7 @@ class BBCooker:
461 pn = bb.data.getVar('PN', the_data, 1) 461 pn = bb.data.getVar('PN', the_data, 1)
462 pv = bb.data.getVar('PV', the_data, 1) 462 pv = bb.data.getVar('PV', the_data, 1)
463 pr = bb.data.getVar('PR', the_data, 1) 463 pr = bb.data.getVar('PR', the_data, 1)
464 tmpdir = bb.data.getVar('TMPDIR', the_data, 1) 464 stamp = '%s.do_populate_staging' % bb.data.getVar('STAMP', the_data, 1)
465 stamp = '%s/stamps/%s-%s-%s.do_populate_staging' % (tmpdir, pn, pv, pr)
466 if os.path.exists(stamp): 465 if os.path.exists(stamp):
467 (newvers, fn) = preferred_versions[pn] 466 (newvers, fn) = preferred_versions[pn]
468 if not fn in eligible: 467 if not fn in eligible: