diff options
Diffstat (limited to 'meta/classes/sanity.bbclass')
-rw-r--r-- | meta/classes/sanity.bbclass | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index cdb28995c6..4873e64a79 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -77,7 +77,7 @@ python oecore_update_bblayers() { | |||
77 | lconf_version = int(d.getVar('LAYER_CONF_VERSION', True)) | 77 | lconf_version = int(d.getVar('LAYER_CONF_VERSION', True)) |
78 | 78 | ||
79 | failmsg = """Your version of bblayers.conf has the wrong LCONF_VERSION (has %s, expecting %s). | 79 | failmsg = """Your version of bblayers.conf has the wrong LCONF_VERSION (has %s, expecting %s). |
80 | Please compare the your file against bblayers.conf.sample and merge any changes before continuing. | 80 | Please compare your file against bblayers.conf.sample and merge any changes before continuing. |
81 | "meld conf/bblayers.conf ${COREBASE}/meta*/conf/bblayers.conf.sample" | 81 | "meld conf/bblayers.conf ${COREBASE}/meta*/conf/bblayers.conf.sample" |
82 | 82 | ||
83 | is a good way to visualise the changes.""" % (current_lconf, lconf_version) | 83 | is a good way to visualise the changes.""" % (current_lconf, lconf_version) |
@@ -132,12 +132,18 @@ is a good way to visualise the changes.""" % (current_lconf, lconf_version) | |||
132 | # Handle rename of meta-yocto -> meta-poky | 132 | # Handle rename of meta-yocto -> meta-poky |
133 | # This marks the start of separate version numbers but code is needed in OE-Core | 133 | # This marks the start of separate version numbers but code is needed in OE-Core |
134 | # for the migration, one last time. | 134 | # for the migration, one last time. |
135 | layers = d.getVar('BBLAYERS', True) | 135 | layers = d.getVar('BBLAYERS', True).split() |
136 | layers = [ os.path.basename(path) for path in layers ] | ||
136 | if 'meta-yocto' in layers: | 137 | if 'meta-yocto' in layers: |
137 | index, meta_yocto_line = sanity_conf_find_line('.*meta-yocto.*\n', lines) | 138 | found = False |
138 | if meta_yocto_line: | 139 | while True: |
139 | lines[index] = meta_yocto_line.replace('meta-yocto', 'meta-poky') | 140 | index, meta_yocto_line = sanity_conf_find_line(r'.*meta-yocto[\'"\s\n]', lines) |
140 | else: | 141 | if meta_yocto_line: |
142 | lines[index] = meta_yocto_line.replace('meta-yocto', 'meta-poky') | ||
143 | found = True | ||
144 | else: | ||
145 | break | ||
146 | if not found: | ||
141 | raise NotImplementedError(failmsg) | 147 | raise NotImplementedError(failmsg) |
142 | index, meta_yocto_line = sanity_conf_find_line('LCONF_VERSION.*\n', lines) | 148 | index, meta_yocto_line = sanity_conf_find_line('LCONF_VERSION.*\n', lines) |
143 | if meta_yocto_line: | 149 | if meta_yocto_line: |