diff options
Diffstat (limited to 'bitbake/lib')
-rw-r--r-- | bitbake/lib/bb/cookerdata.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bitbake/lib/bb/cookerdata.py b/bitbake/lib/bb/cookerdata.py index d6206b7319..ba657c03b6 100644 --- a/bitbake/lib/bb/cookerdata.py +++ b/bitbake/lib/bb/cookerdata.py | |||
@@ -291,6 +291,8 @@ class CookerDataBuilder(object): | |||
291 | 291 | ||
292 | multiconfig = (self.data.getVar("BBMULTICONFIG") or "").split() | 292 | multiconfig = (self.data.getVar("BBMULTICONFIG") or "").split() |
293 | for config in multiconfig: | 293 | for config in multiconfig: |
294 | if config[0].isdigit(): | ||
295 | bb.fatal("Multiconfig name '%s' is invalid as multiconfigs cannot start with a digit" % config) | ||
294 | mcdata = self.parseConfigurationFiles(self.prefiles, self.postfiles, config) | 296 | mcdata = self.parseConfigurationFiles(self.prefiles, self.postfiles, config) |
295 | bb.event.fire(bb.event.ConfigParsed(), mcdata) | 297 | bb.event.fire(bb.event.ConfigParsed(), mcdata) |
296 | self.mcdata[config] = mcdata | 298 | self.mcdata[config] = mcdata |