summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes/base.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass
index 27b5f53a09..76a4ef650d 100644
--- a/meta/classes/base.bbclass
+++ b/meta/classes/base.bbclass
@@ -461,7 +461,7 @@ python () {
461 # obsolete. Return a warning to the user. 461 # obsolete. Return a warning to the user.
462 princ = d.getVar('PRINC', True) 462 princ = d.getVar('PRINC', True)
463 if princ and princ != "0": 463 if princ and princ != "0":
464 bb.warn("Use of PRINC was detected in the recipe %s (or one of its .bbappends)\nUse of PRINC is deprecated. The PR server should be used to automatically increment the PR. See: https://wiki.yoctoproject.org/wiki/PR_Service." % d.getVar("FILE", True)) 464 bb.warn("Use of PRINC %s was detected in the recipe %s (or one of its .bbappends)\nUse of PRINC is deprecated. The PR server should be used to automatically increment the PR. See: https://wiki.yoctoproject.org/wiki/PR_Service." % (princ, d.getVar("FILE", True)))
465 pr = d.getVar('PR', True) 465 pr = d.getVar('PR', True)
466 pr_prefix = re.search("\D+",pr) 466 pr_prefix = re.search("\D+",pr)
467 prval = re.search("\d+",pr) 467 prval = re.search("\d+",pr)