diff options
Diffstat (limited to 'documentation/poky-ref-manual/extendpoky.xml')
-rw-r--r-- | documentation/poky-ref-manual/extendpoky.xml | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/documentation/poky-ref-manual/extendpoky.xml b/documentation/poky-ref-manual/extendpoky.xml index 92f51a56f9..4fd818e8b1 100644 --- a/documentation/poky-ref-manual/extendpoky.xml +++ b/documentation/poky-ref-manual/extendpoky.xml | |||
@@ -685,15 +685,20 @@ BBFILE_PRIORITY_emenlow = "6" | |||
685 | This means that for new recipes you must be sure to add the PR variable and set its initial value | 685 | This means that for new recipes you must be sure to add the PR variable and set its initial value |
686 | equal to "r0". | 686 | equal to "r0". |
687 | Failing to define PR makes it easy to miss when you bump a package. | 687 | Failing to define PR makes it easy to miss when you bump a package. |
688 | Note that you can only use integer values for the PR variable. | 688 | Note that you can only use integer values following the "r" in the PR variable. |
689 | </para> | 689 | </para> |
690 | <para> | 690 | <para> |
691 | You can also use the <glossterm><link linkend='var-INC_PR'>INC_PR</link></glossterm> variable | 691 | If you are sharing a common .inc file with multiple recipes, you can also use the |
692 | to keep up with package revisioning. | 692 | <glossterm><link linkend='var-INC_PR'>INC_PR</link></glossterm> variable to ensure that |
693 | </para> | 693 | the recipes sharing the .inc file are rebuilt when the .inc file itself is changed. The |
694 | .inc file must set INC_PR (initially to "r0"), and all recipes referring to it should set PR to | ||
695 | "$(INC_PR).0" initially, incrementing the last number when the recipe is changed. If the | ||
696 | .inc file is changed then its INC_PR should be incremented. | ||
697 | </literallayout> | ||
694 | <para> | 698 | <para> |
695 | When upgrading the version of a package the (<glossterm><link | 699 | When upgrading the version of a package, assuming the <glossterm><link |
696 | linkend='var-PV'>PV</link></glossterm>) and PR variables should be reset to "r0". | 700 | linkend='var-PV'>PV</link></glossterm> changes, the PR variable should be reset to "r0" |
701 | (or "$(INC_PR).0" if you are using INC_PR). | ||
697 | </para> | 702 | </para> |
698 | <para> | 703 | <para> |
699 | Usually, version increases occur only to packages. | 704 | Usually, version increases occur only to packages. |