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 | ast2050-yocto-poky-f6da26f98254046a59983adf8e831bf1eeb9169f.zip ast2050-yocto-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 ea53498..fbcaefb 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass @@ -335,7 +335,7 @@ python () { # If PRINC is set, try and increase the PR value by the amount specified princ = d.getVar('PRINC', True) - if princ: + if princ and princ != "0": pr = d.getVar('PR', True) pr_prefix = re.search("\D+",pr) prval = re.search("\d+",pr) |