diff options
author | Richard Purdie <richard@openedhand.com> | 2008-07-22 09:13:51 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2008-07-22 09:13:51 +0000 |
commit | 63e451ebbb79360aeed9572bf6d8af633be9cd55 (patch) | |
tree | 269e04c22d2dd8d678edbeb47a5fa783a97c8f76 /bitbake/lib/bb/fetch | |
parent | dba215e3f2880f7642c9c3a4d4126a86356ebd43 (diff) | |
download | poky-63e451ebbb79360aeed9572bf6d8af633be9cd55.tar.gz |
__init__.py: Error if SRCREV == INVALID
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4919 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'bitbake/lib/bb/fetch')
-rw-r--r-- | bitbake/lib/bb/fetch/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bitbake/lib/bb/fetch/__init__.py b/bitbake/lib/bb/fetch/__init__.py index c3bea447c1..721eb4d646 100644 --- a/bitbake/lib/bb/fetch/__init__.py +++ b/bitbake/lib/bb/fetch/__init__.py | |||
@@ -49,6 +49,9 @@ class ParameterError(Exception): | |||
49 | class MD5SumError(Exception): | 49 | class MD5SumError(Exception): |
50 | """Exception raised when a MD5SUM of a file does not match the expected one""" | 50 | """Exception raised when a MD5SUM of a file does not match the expected one""" |
51 | 51 | ||
52 | class InvalidSRCREV(Exception): | ||
53 | """Exception raised when an invalid SRCREV is encountered""" | ||
54 | |||
52 | def uri_replace(uri, uri_find, uri_replace, d): | 55 | def uri_replace(uri, uri_find, uri_replace, d): |
53 | # bb.msg.note(1, bb.msg.domain.Fetcher, "uri_replace: operating on %s" % uri) | 56 | # bb.msg.note(1, bb.msg.domain.Fetcher, "uri_replace: operating on %s" % uri) |
54 | if not uri or not uri_find or not uri_replace: | 57 | if not uri or not uri_find or not uri_replace: |
@@ -425,6 +428,8 @@ class Fetch(object): | |||
425 | rev = data.getVar("SRCREV_pn-" + pn + "_" + ud.parm['name'], d, 1) | 428 | rev = data.getVar("SRCREV_pn-" + pn + "_" + ud.parm['name'], d, 1) |
426 | if not rev: | 429 | if not rev: |
427 | rev = data.getVar("SRCREV", d, 1) | 430 | rev = data.getVar("SRCREV", d, 1) |
431 | if rev == "INVALID": | ||
432 | raise InvalidSRCREV("Please set SRCREV to a valid value") | ||
428 | if not rev: | 433 | if not rev: |
429 | return False | 434 | return False |
430 | if rev is "SRCREVINACTION": | 435 | if rev is "SRCREVINACTION": |