Add fetch back to unpack deps, and correct naming of the fetch stamp.
authorChris Larson <clarson@kergoth.com>
Tue, 10 Jun 2003 05:37:31 +0000 (05:37 +0000)
committerChris Larson <clarson@kergoth.com>
Tue, 10 Jun 2003 05:37:31 +0000 (05:37 +0000)
bin/oebuild

index 68b4ecf..090cf00 100644 (file)
@@ -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",