diff options
-rw-r--r-- | meta/lib/oe/recipeutils.py | 4 | ||||
-rwxr-xr-x | scripts/devtool | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/meta/lib/oe/recipeutils.py b/meta/lib/oe/recipeutils.py index 09bd7fdb46..19d97b62d2 100644 --- a/meta/lib/oe/recipeutils.py +++ b/meta/lib/oe/recipeutils.py | |||
@@ -269,8 +269,8 @@ def get_recipe_patches(d): | |||
269 | def validate_pn(pn): | 269 | def validate_pn(pn): |
270 | """Perform validation on a recipe name (PN) for a new recipe.""" | 270 | """Perform validation on a recipe name (PN) for a new recipe.""" |
271 | reserved_names = ['forcevariable', 'append', 'prepend', 'remove'] | 271 | reserved_names = ['forcevariable', 'append', 'prepend', 'remove'] |
272 | if not re.match('[0-9a-z-]+', pn): | 272 | if not re.match('[0-9a-z-.]+', pn): |
273 | return 'Recipe name "%s" is invalid: only characters 0-9, a-z and - are allowed' % pn | 273 | return 'Recipe name "%s" is invalid: only characters 0-9, a-z, - and . are allowed' % pn |
274 | elif pn in reserved_names: | 274 | elif pn in reserved_names: |
275 | return 'Recipe name "%s" is invalid: is a reserved keyword' % pn | 275 | return 'Recipe name "%s" is invalid: is a reserved keyword' % pn |
276 | elif pn.startswith('pn-'): | 276 | elif pn.startswith('pn-'): |
diff --git a/scripts/devtool b/scripts/devtool index 981ff515d3..841831c410 100755 --- a/scripts/devtool +++ b/scripts/devtool | |||
@@ -101,7 +101,7 @@ def read_workspace(): | |||
101 | _create_workspace(config.workspace_path, config, basepath) | 101 | _create_workspace(config.workspace_path, config, basepath) |
102 | 102 | ||
103 | logger.debug('Reading workspace in %s' % config.workspace_path) | 103 | logger.debug('Reading workspace in %s' % config.workspace_path) |
104 | externalsrc_re = re.compile(r'^EXTERNALSRC(_pn-[a-zA-Z0-9-]*)? =.*$') | 104 | externalsrc_re = re.compile(r'^EXTERNALSRC(_pn-[^ =]+)? =.*$') |
105 | for fn in glob.glob(os.path.join(config.workspace_path, 'appends', '*.bbappend')): | 105 | for fn in glob.glob(os.path.join(config.workspace_path, 'appends', '*.bbappend')): |
106 | pn = os.path.splitext(os.path.basename(fn))[0].split('_')[0] | 106 | pn = os.path.splitext(os.path.basename(fn))[0].split('_')[0] |
107 | with open(fn, 'r') as f: | 107 | with open(fn, 'r') as f: |