summaryrefslogtreecommitdiffstats
path: root/bitbake/bin
diff options
context:
space:
mode:
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: