diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/osc.py')
| -rw-r--r-- | bitbake/lib/bb/fetch2/osc.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/fetch2/osc.py b/bitbake/lib/bb/fetch2/osc.py index 3dfa2a7a72..d051dfdafa 100644 --- a/bitbake/lib/bb/fetch2/osc.py +++ b/bitbake/lib/bb/fetch2/osc.py | |||
| @@ -34,13 +34,13 @@ class Osc(FetchMethod): | |||
| 34 | 34 | ||
| 35 | # Create paths to osc checkouts | 35 | # Create paths to osc checkouts |
| 36 | relpath = self._strip_leading_slashes(ud.path) | 36 | relpath = self._strip_leading_slashes(ud.path) |
| 37 | ud.pkgdir = os.path.join(data.expand('${OSCDIR}', d), ud.host) | 37 | ud.pkgdir = os.path.join(d.getVar('OSCDIR', True), ud.host) |
| 38 | ud.moddir = os.path.join(ud.pkgdir, relpath, ud.module) | 38 | ud.moddir = os.path.join(ud.pkgdir, relpath, ud.module) |
| 39 | 39 | ||
| 40 | if 'rev' in ud.parm: | 40 | if 'rev' in ud.parm: |
| 41 | ud.revision = ud.parm['rev'] | 41 | ud.revision = ud.parm['rev'] |
| 42 | else: | 42 | else: |
| 43 | pv = data.getVar("PV", d, 0) | 43 | pv = d.getVar("PV", False) |
| 44 | rev = bb.fetch2.srcrev_internal_helper(ud, d) | 44 | rev = bb.fetch2.srcrev_internal_helper(ud, d) |
| 45 | if rev and rev != True: | 45 | if rev and rev != True: |
| 46 | ud.revision = rev | 46 | ud.revision = rev |
| @@ -84,7 +84,7 @@ class Osc(FetchMethod): | |||
| 84 | 84 | ||
| 85 | logger.debug(2, "Fetch: checking for module directory '" + ud.moddir + "'") | 85 | logger.debug(2, "Fetch: checking for module directory '" + ud.moddir + "'") |
| 86 | 86 | ||
| 87 | if os.access(os.path.join(data.expand('${OSCDIR}', d), ud.path, ud.module), os.R_OK): | 87 | if os.access(os.path.join(d.getVar('OSCDIR', True), ud.path, ud.module), os.R_OK): |
| 88 | oscupdatecmd = self._buildosccommand(ud, d, "update") | 88 | oscupdatecmd = self._buildosccommand(ud, d, "update") |
| 89 | logger.info("Update "+ ud.url) | 89 | logger.info("Update "+ ud.url) |
| 90 | # update sources there | 90 | # update sources there |
| @@ -114,7 +114,7 @@ class Osc(FetchMethod): | |||
| 114 | Generate a .oscrc to be used for this run. | 114 | Generate a .oscrc to be used for this run. |
| 115 | """ | 115 | """ |
| 116 | 116 | ||
| 117 | config_path = os.path.join(data.expand('${OSCDIR}', d), "oscrc") | 117 | config_path = os.path.join(d.getVar('OSCDIR', True), "oscrc") |
| 118 | if (os.path.exists(config_path)): | 118 | if (os.path.exists(config_path)): |
| 119 | os.remove(config_path) | 119 | os.remove(config_path) |
| 120 | 120 | ||
| @@ -123,7 +123,7 @@ class Osc(FetchMethod): | |||
| 123 | f.write("apisrv = %s\n" % ud.host) | 123 | f.write("apisrv = %s\n" % ud.host) |
| 124 | f.write("scheme = http\n") | 124 | f.write("scheme = http\n") |
| 125 | f.write("su-wrapper = su -c\n") | 125 | f.write("su-wrapper = su -c\n") |
| 126 | f.write("build-root = %s\n" % data.expand('${WORKDIR}', d)) | 126 | f.write("build-root = %s\n" % d.getVar('WORKDIR', True)) |
| 127 | f.write("urllist = %s\n" % d.getVar("OSCURLLIST", True)) | 127 | f.write("urllist = %s\n" % d.getVar("OSCURLLIST", True)) |
| 128 | f.write("extra-pkgs = gzip\n") | 128 | f.write("extra-pkgs = gzip\n") |
| 129 | f.write("\n") | 129 | f.write("\n") |
