diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-25 13:54:43 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-25 13:54:43 +0000 |
commit | e6fccbb463f2522bb0d20bf07054ce5428a3c1be (patch) | |
tree | d483d49c9fbc54e7744d0ad6536252639405cb35 /bitbake/lib/bb/build.py | |
parent | f3b89a0ed3d08ba880ca111f868c839d33a0aad4 (diff) | |
download | openembedded-core-e6fccbb463f2522bb0d20bf07054ce5428a3c1be.tar.gz openembedded-core-e6fccbb463f2522bb0d20bf07054ce5428a3c1be.tar.bz2 openembedded-core-e6fccbb463f2522bb0d20bf07054ce5428a3c1be.zip |
bitbake: Sync with upstream, fix some typos, add selfstamp flag
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3227 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/lib/bb/build.py')
-rw-r--r-- | bitbake/lib/bb/build.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/bb/build.py b/bitbake/lib/bb/build.py index 501f4f8206..f41898ec14 100644 --- a/bitbake/lib/bb/build.py +++ b/bitbake/lib/bb/build.py @@ -297,7 +297,7 @@ def exec_task(task, d): task_graph.walkdown(task, execute) # make stamp, or cause event and raise exception - if not data.getVarFlag(task, 'nostamp', d): + if not data.getVarFlag(task, 'nostamp', d) and not data.getVarFlag(task, 'selfstamp', d): make_stamp(task, d) def extract_stamp_data(d, fn): |