summaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorJoshua Watt <jpewhacker@gmail.com>2018-03-28 10:56:43 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2018-05-29 11:41:57 +0100
commit614f869cf093dad8fbc98b2823d31db042d5a2b2 (patch)
treeb28e4dca75386cef22e6c43a91a70dfddf8317cb /documentation
parentef4bb21693832d68dcdf6f78208591df029ac02b (diff)
downloadpoky-614f869cf093dad8fbc98b2823d31db042d5a2b2.tar.gz
ref-manual: Updated the SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS variable
Describes the new wildcard syntax (From yocto-docs rev: 8608810da1c91116415dc568b2a1a929c923c629) 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')
-rw-r--r--documentation/ref-manual/ref-variables.xml21
1 files changed, 19 insertions, 2 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml
index 2b0172317d..84614ea486 100644
--- a/documentation/ref-manual/ref-variables.xml
+++ b/documentation/ref-manual/ref-variables.xml
@@ -12527,8 +12527,25 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3"
12527 </para> 12527 </para>
12528 12528
12529 <para> 12529 <para>
12530 In this example, <filename>intone</filename> depends on 12530 In the previous example, <filename>intone</filename>
12531 <filename>mplayer2</filename>. 12531 depends on <filename>mplayer2</filename>.
12532 </para>
12533
12534 <para>
12535 You can use the special token <filename>"*"</filename> on
12536 the left-hand side of the dependency to match all
12537 recipes except the one on the right-hand side.
12538 Here is an example:
12539 <literallayout class='monospaced'>
12540 SIGGEN_EXCLUDE_SAFE_RECIPE_DEPS += "*->quilt-native"
12541 </literallayout>
12542 </para>
12543
12544 <para>
12545 In the previous example, all recipes except
12546 <filename>quilt-native</filename> ignore task
12547 signatures from the <filename>quilt-native</filename>
12548 recipe when determining their task signatures.
12532 </para> 12549 </para>
12533 12550
12534 <para> 12551 <para>