aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Larson <clarson@kergoth.com>2003-06-10 05:37:31 +0000
committerChris Larson <clarson@kergoth.com>2003-06-10 05:37:31 +0000
commit6954dfa4be3ae0d0b1a31b5e05d0aa0ba4f1c1e1 (patch)
tree684827555413fea9358c16a3fd655b84622c4bf6
parent0938bf397aedce57eab4f84996ff7caa5ee6db91 (diff)
downloadbitbake-6954dfa4be3ae0d0b1a31b5e05d0aa0ba4f1c1e1.tar.gz
Add fetch back to unpack deps, and correct naming of the fetch stamp.
-rw-r--r--bin/oebuild5
1 files changed, 2 insertions, 3 deletions
diff --git a/bin/oebuild b/bin/oebuild
index 68b4ecfdd..090cf00bb 100644
--- a/bin/oebuild
+++ b/bin/oebuild
@@ -173,8 +173,7 @@ def do_fetch():
except oefetch.FetchError:
fatal("Fetch failed")
return
-
- mkstamp('source')
+ mkstamp('fetch')
else:
fatal("No SRC_URI variable, not downloading anything")
@@ -308,7 +307,7 @@ tasks = {
"fetch" : { "func" : "do_fetch",
"deps" : [ ] },
"unpack" : { "func" : "do_unpack",
- "deps" : [ ] },
+ "deps" : [ 'fetch' ] },
"compile" : { "func" : "do_compile",
"deps" : [ 'unpack' ] },
"stage" : { "func" : "do_stage",