diff options
author | Martin Jansa <martin.jansa@gmail.com> | 2011-12-02 19:39:04 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-12-05 16:16:12 +0000 |
commit | f6da26f98254046a59983adf8e831bf1eeb9169f (patch) | |
tree | 37c8dc0c31ee1712d11d02e9a27ca484c348326d /meta/classes | |
parent | 2dfe16912168885be5901f35767db1d5c8eee4fc (diff) | |
download | poky-f6da26f98254046a59983adf8e831bf1eeb9169f.tar.gz |
bitbake.conf: add default PRINC 0 to be able to increment it
(From OE-Core rev: 656793c706d84460f397b10ceb23ebb721ed3960)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/base.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index ea5349852b..fbcaefb4dd 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -335,7 +335,7 @@ python () { | |||
335 | 335 | ||
336 | # If PRINC is set, try and increase the PR value by the amount specified | 336 | # If PRINC is set, try and increase the PR value by the amount specified |
337 | princ = d.getVar('PRINC', True) | 337 | princ = d.getVar('PRINC', True) |
338 | if princ: | 338 | if princ and princ != "0": |
339 | pr = d.getVar('PR', True) | 339 | pr = d.getVar('PR', True) |
340 | pr_prefix = re.search("\D+",pr) | 340 | pr_prefix = re.search("\D+",pr) |
341 | prval = re.search("\d+",pr) | 341 | prval = re.search("\d+",pr) |