diff options
Diffstat (limited to 'bitbake/lib/bb/fetch2/clearcase.py')
| -rw-r--r-- | bitbake/lib/bb/fetch2/clearcase.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/fetch2/clearcase.py b/bitbake/lib/bb/fetch2/clearcase.py index d35b2dabeb..8df8f53d2f 100644 --- a/bitbake/lib/bb/fetch2/clearcase.py +++ b/bitbake/lib/bb/fetch2/clearcase.py | |||
| @@ -108,13 +108,13 @@ class ClearCase(FetchMethod): | |||
| 108 | else: | 108 | else: |
| 109 | ud.module = "" | 109 | ud.module = "" |
| 110 | 110 | ||
| 111 | ud.basecmd = d.getVar("FETCHCMD_ccrc", True) or spawn.find_executable("cleartool") or spawn.find_executable("rcleartool") | 111 | ud.basecmd = d.getVar("FETCHCMD_ccrc") or spawn.find_executable("cleartool") or spawn.find_executable("rcleartool") |
| 112 | 112 | ||
| 113 | if d.getVar("SRCREV", True) == "INVALID": | 113 | if d.getVar("SRCREV") == "INVALID": |
| 114 | raise FetchError("Set a valid SRCREV for the clearcase fetcher in your recipe, e.g. SRCREV = \"/main/LATEST\" or any other label of your choice.") | 114 | raise FetchError("Set a valid SRCREV for the clearcase fetcher in your recipe, e.g. SRCREV = \"/main/LATEST\" or any other label of your choice.") |
| 115 | 115 | ||
| 116 | ud.label = d.getVar("SRCREV", False) | 116 | ud.label = d.getVar("SRCREV", False) |
| 117 | ud.customspec = d.getVar("CCASE_CUSTOM_CONFIG_SPEC", True) | 117 | ud.customspec = d.getVar("CCASE_CUSTOM_CONFIG_SPEC") |
| 118 | 118 | ||
| 119 | ud.server = "%s://%s%s" % (ud.proto, ud.host, ud.path) | 119 | ud.server = "%s://%s%s" % (ud.proto, ud.host, ud.path) |
| 120 | 120 | ||
| @@ -124,7 +124,7 @@ class ClearCase(FetchMethod): | |||
| 124 | 124 | ||
| 125 | ud.viewname = "%s-view%s" % (ud.identifier, d.getVar("DATETIME", d, True)) | 125 | ud.viewname = "%s-view%s" % (ud.identifier, d.getVar("DATETIME", d, True)) |
| 126 | ud.csname = "%s-config-spec" % (ud.identifier) | 126 | ud.csname = "%s-config-spec" % (ud.identifier) |
| 127 | ud.ccasedir = os.path.join(d.getVar("DL_DIR", True), ud.type) | 127 | ud.ccasedir = os.path.join(d.getVar("DL_DIR"), ud.type) |
| 128 | ud.viewdir = os.path.join(ud.ccasedir, ud.viewname) | 128 | ud.viewdir = os.path.join(ud.ccasedir, ud.viewname) |
| 129 | ud.configspecfile = os.path.join(ud.ccasedir, ud.csname) | 129 | ud.configspecfile = os.path.join(ud.ccasedir, ud.csname) |
| 130 | ud.localfile = "%s.tar.gz" % (ud.identifier) | 130 | ud.localfile = "%s.tar.gz" % (ud.identifier) |
| @@ -144,7 +144,7 @@ class ClearCase(FetchMethod): | |||
| 144 | self.debug("configspecfile = %s" % ud.configspecfile) | 144 | self.debug("configspecfile = %s" % ud.configspecfile) |
| 145 | self.debug("localfile = %s" % ud.localfile) | 145 | self.debug("localfile = %s" % ud.localfile) |
| 146 | 146 | ||
| 147 | ud.localfile = os.path.join(d.getVar("DL_DIR", True), ud.localfile) | 147 | ud.localfile = os.path.join(d.getVar("DL_DIR"), ud.localfile) |
| 148 | 148 | ||
| 149 | def _build_ccase_command(self, ud, command): | 149 | def _build_ccase_command(self, ud, command): |
| 150 | """ | 150 | """ |
