diff options
| -rw-r--r-- | meta/classes/useradd-staticids.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/useradd-staticids.bbclass b/meta/classes/useradd-staticids.bbclass index 440c0e3846..d963f283b7 100644 --- a/meta/classes/useradd-staticids.bbclass +++ b/meta/classes/useradd-staticids.bbclass | |||
| @@ -97,7 +97,7 @@ def update_useradd_static_config(d): | |||
| 97 | if not param: | 97 | if not param: |
| 98 | continue | 98 | continue |
| 99 | try: | 99 | try: |
| 100 | uaargs = parser.parse_args(re.split('''[ \t]*(?=(?:[^'"]|'[^']*'|"[^"]*")*$)''', param)) | 100 | uaargs = parser.parse_args(re.split('''[ \t]+(?=(?:[^'"]|'[^']*'|"[^"]*")*$)''', param)) |
| 101 | except: | 101 | except: |
| 102 | raise bb.build.FuncFailed("%s: Unable to parse arguments for USERADD_PARAM_%s: '%s'" % (d.getVar('PN', True), pkg, param)) | 102 | raise bb.build.FuncFailed("%s: Unable to parse arguments for USERADD_PARAM_%s: '%s'" % (d.getVar('PN', True), pkg, param)) |
| 103 | 103 | ||
| @@ -231,7 +231,7 @@ def update_useradd_static_config(d): | |||
| 231 | continue | 231 | continue |
| 232 | try: | 232 | try: |
| 233 | # If we're processing multiple lines, we could have left over values here... | 233 | # If we're processing multiple lines, we could have left over values here... |
| 234 | gaargs = parser.parse_args(re.split('''[ \t]*(?=(?:[^'"]|'[^']*'|"[^"]*")*$)''', param)) | 234 | gaargs = parser.parse_args(re.split('''[ \t]+(?=(?:[^'"]|'[^']*'|"[^"]*")*$)''', param)) |
| 235 | except: | 235 | except: |
| 236 | raise bb.build.FuncFailed("%s: Unable to parse arguments for GROUPADD_PARAM_%s: '%s'" % (d.getVar('PN', True), pkg, param)) | 236 | raise bb.build.FuncFailed("%s: Unable to parse arguments for GROUPADD_PARAM_%s: '%s'" % (d.getVar('PN', True), pkg, param)) |
| 237 | 237 | ||
