diff options
author | Konrad Weihmann <kweihmann@outlook.com> | 2022-04-13 07:08:51 (GMT) |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-04-13 21:23:50 (GMT) |
commit | 42cd504a07f7c49346b80d347d5cf864c3c83693 (patch) | |
tree | bdd1504773143409f7c7752c7421a981aecd6016 | |
parent | e54d6623a2c845872f5aec511660b4fbe155dfab (diff) | |
download | poky-42cd504a07f7c49346b80d347d5cf864c3c83693.tar.gz |
libcap: add pam_cap license
If libcap is compiled with pam in PACKAGECONFIG
one additional license text becomes effective,
add that as a conditional
(From OE-Core rev: 803209ed8c2515403ad4ec21673d909f54aaff76)
Signed-off-by: Konrad Weihmann <kweihmann@outlook.com>
Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-support/libcap/libcap_2.63.bb | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-support/libcap/libcap_2.63.bb b/meta/recipes-support/libcap/libcap_2.63.bb index f3133f9..9e341c4 100644 --- a/meta/recipes-support/libcap/libcap_2.63.bb +++ b/meta/recipes-support/libcap/libcap_2.63.bb | |||
@@ -5,7 +5,11 @@ users, without giving them full root permissions." | |||
5 | HOMEPAGE = "http://sites.google.com/site/fullycapable/" | 5 | HOMEPAGE = "http://sites.google.com/site/fullycapable/" |
6 | # no specific GPL version required | 6 | # no specific GPL version required |
7 | LICENSE = "BSD-3-Clause | GPL-2.0-only" | 7 | LICENSE = "BSD-3-Clause | GPL-2.0-only" |
8 | LIC_FILES_CHKSUM = "file://License;md5=e2370ba375efe9e1a095c26d37e483b8" | 8 | LIC_FILES_CHKSUM_PAM = "file://pam_cap/License;md5=0ad4c9c052b9719ee4fce1bfc7c7dee4" |
9 | LIC_FILES_CHKSUM = "\ | ||
10 | file://License;md5=e2370ba375efe9e1a095c26d37e483b8 \ | ||
11 | ${@bb.utils.contains('PACKAGECONFIG', 'pam', '${LIC_FILES_CHKSUM_PAM}', '', d)} \ | ||
12 | " | ||
9 | 13 | ||
10 | DEPENDS = "hostperl-runtime-native gperf-native" | 14 | DEPENDS = "hostperl-runtime-native gperf-native" |
11 | 15 | ||