summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/useradd-staticids.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/useradd-staticids.bbclass b/meta/classes/useradd-staticids.bbclass
index abe484eb46..1dbcba2bf1 100644
--- a/meta/classes/useradd-staticids.bbclass
+++ b/meta/classes/useradd-staticids.bbclass
@@ -47,7 +47,7 @@ def update_useradd_static_config(d):
47 def handle_missing_id(id, type, pkg, files, var, value): 47 def handle_missing_id(id, type, pkg, files, var, value):
48 # For backwards compatibility we accept "1" in addition to "error" 48 # For backwards compatibility we accept "1" in addition to "error"
49 error_dynamic = d.getVar('USERADD_ERROR_DYNAMIC') 49 error_dynamic = d.getVar('USERADD_ERROR_DYNAMIC')
50 msg = "%s - %s: %sname %s does not have a static ID defined." % (d.getVar('PN'), pkg, type, id) 50 msg = 'Recipe %s, package %s: %sname "%s" does not have a static ID defined.' % (d.getVar('PN'), pkg, type, id)
51 if files: 51 if files:
52 msg += " Add %s to one of these files: %s" % (id, files) 52 msg += " Add %s to one of these files: %s" % (id, files)
53 else: 53 else: