diff options
author | Luca Ceresoli <luca@lucaceresoli.net> | 2012-11-03 06:52:16 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-11-04 13:33:29 +0100 |
commit | db961da67fcb59f4bb636150256ad05a0c6fbf2f (patch) | |
tree | 5f359647edda2e9fa0327699eb88e46a4cf983c2 /docs | |
parent | 19b18527d763e7ef19dec1ca749fdc43729bbfc0 (diff) | |
download | buildroot-db961da67fcb59f4bb636150256ad05a0c6fbf2f.tar.gz buildroot-db961da67fcb59f4bb636150256ad05a0c6fbf2f.zip |
legal-info: support per-package hooks
Useful to produce extra warnings for packages that have special
licensing-related issues.
Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net>
Acked-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/manual/adding-packages-generic.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/docs/manual/adding-packages-generic.txt b/docs/manual/adding-packages-generic.txt index d3a4abb098..e1b46b03c7 100644 --- a/docs/manual/adding-packages-generic.txt +++ b/docs/manual/adding-packages-generic.txt @@ -349,7 +349,8 @@ of the package construction. The hooks are more useful for packages using the autotools infrastructure described below. However, since they are provided by the generic infrastructure, they are documented here. The exception is +LIBFOO_POST_PATCH_HOOKS+. Patching the -package is not user definable, so +LIBFOO_POST_PATCH_HOOKS+ will be +package and producing legal info are not user definable, so ++LIBFOO_POST_PATCH_HOOKS+ and +LIBFOO_POST_LEGAL_INFO_HOOKS+ will be userful for generic packages. The following hook points are available: @@ -361,6 +362,7 @@ The following hook points are available: * +LIBFOO_POST_INSTALL_HOOKS+ (for host packages only) * +LIBFOO_POST_INSTALL_STAGING_HOOKS+ (for target packages only) * +LIBFOO_POST_INSTALL_TARGET_HOOKS+ (for target packages only) +* +LIBFOO_POST_LEGAL_INFO_HOOKS+ These variables are 'lists' of variable names containing actions to be performed at this hook point. This allows several hooks to be |