diff options
author | Joshua Watt <jpewhacker@gmail.com> | 2018-03-28 10:56:43 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2018-05-24 17:16:05 +0100 |
commit | f2e51380fbfd493e8e4b01a923104389e46f5a59 (patch) | |
tree | 248d34d176f166430133fdac34ddd386448e31c6 /documentation/ref-manual | |
parent | 7907cb7b6c0e4656bff5b02bd7b3a3d0bb9f4287 (diff) | |
download | poky-f2e51380fbfd493e8e4b01a923104389e46f5a59.tar.gz |
ref-manual: Updated the SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS variable
Describes the new wildcard syntax
(From yocto-docs rev: e91db865686e7b1b9b21cb9aea892b0ed8884438)
Signed-off-by: Joshua Watt <jpewhacker@gmail.com>
Signed-off-by: Scott Rifenbark <srifenbark@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation/ref-manual')
-rw-r--r-- | documentation/ref-manual/ref-variables.xml | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index 34c00d7239..5d23a4467c 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml | |||
@@ -12720,8 +12720,25 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
12720 | </para> | 12720 | </para> |
12721 | 12721 | ||
12722 | <para> | 12722 | <para> |
12723 | In this example, <filename>intone</filename> depends on | 12723 | In the previous example, <filename>intone</filename> |
12724 | <filename>mplayer2</filename>. | 12724 | depends on <filename>mplayer2</filename>. |
12725 | </para> | ||
12726 | |||
12727 | <para> | ||
12728 | You can use the special token <filename>"*"</filename> on | ||
12729 | the left-hand side of the dependency to match all | ||
12730 | recipes except the one on the right-hand side. | ||
12731 | Here is an example: | ||
12732 | <literallayout class='monospaced'> | ||
12733 | SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += "*->quilt-native" | ||
12734 | </literallayout> | ||
12735 | </para> | ||
12736 | |||
12737 | <para> | ||
12738 | In the previous example, all recipes except | ||
12739 | <filename>quilt-native</filename> ignore task | ||
12740 | signatures from the <filename>quilt-native</filename> | ||
12741 | recipe when determining their task signatures. | ||
12725 | </para> | 12742 | </para> |
12726 | 12743 | ||
12727 | <para> | 12744 | <para> |