diff options
| author | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-04-19 17:31:28 +0000 |
|---|---|---|
| committer | Stelios Koroneos <skoroneos@digital-opsis.com> | 2007-04-19 17:31:28 +0000 |
| commit | f6c39b9872812a941c26e7dfa5ea1a5e4369d1bb (patch) | |
| tree | 010af6cb3ff72ffcfaaa0a0bdd67b1fe3a9f086d /classes/base.bbclass | |
| parent | a79ff721887dca0119f7f06d992d6a8c9fff5cf6 (diff) | |
| parent | ebebd8cae02bbee0cc44866157866bf60e630c6e (diff) | |
merge of '60583f10638bed4ae577443e95e8245aaacfcd6f'
and 'cd73470b889bd3b1b6d2641d31c7a69701abcf46'
Diffstat (limited to 'classes/base.bbclass')
| -rw-r--r-- | classes/base.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/classes/base.bbclass b/classes/base.bbclass index d78bd3cec3..1dd3a488b3 100644 --- a/classes/base.bbclass +++ b/classes/base.bbclass @@ -41,7 +41,7 @@ def base_chk_file(parser, pn, pv, src_uri, localpath, data): # md5 and sha256 should be valid now if not os.path.exists(localpath): - bb.note("The locapath does not exist '%s'" % localpath) + bb.note("The localpath does not exist '%s'" % localpath) raise Exception("The path does not exist '%s'" % localpath) @@ -483,7 +483,7 @@ python base_do_fetch() { # Check each URI for url in src_uri.split(): - localpath = bb.fetch.localpath(url,localdata) + localpath = bb.data.expand(bb.fetch.localpath(url, localdata), localdata) (type,host,path,_,_,_) = bb.decodeurl(url) uri = "%s://%s%s" % (type,host,path) try: |
