diff options
author | Khem Raj <raj.khem@gmail.com> | 2020-01-28 11:28:52 -0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2020-01-28 11:31:04 -0800 |
commit | 50d526d06a742fa69ff698d7c2eefffb56e13afa (patch) | |
tree | dffa827404a5fc989f6c7c1bd3a52e6fa7a1a7b5 /meta-oe/recipes-support | |
parent | 1c085f4877d78901f1e8c2aff4c670f2ed1f7f98 (diff) | |
download | meta-openembedded-50d526d06a742fa69ff698d7c2eefffb56e13afa.tar.gz |
daemontools: Disable the chkshsgr tests
Running the chkhsgr test during cross compile fails
./chkshsgr || ( cat warn-shsgr; exit 1 )
Oops. Your getgroups() returned 0, and setgroups() failed; this means
that I can't reliably do my shsgr test. Please either ``make'' as root
or ``make'' while you're in one or more supplementary groups.
All OE based targets have working getgroups()/setgroups()
implementation, so its a safe assumption and therefore make the test
to be a dummy
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support')
-rw-r--r-- | meta-oe/recipes-support/daemontools/daemontools_0.76.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/daemontools/daemontools_0.76.bb b/meta-oe/recipes-support/daemontools/daemontools_0.76.bb index 35251cb8dc..d674e03781 100644 --- a/meta-oe/recipes-support/daemontools/daemontools_0.76.bb +++ b/meta-oe/recipes-support/daemontools/daemontools_0.76.bb | |||
@@ -33,6 +33,7 @@ DEPENDS += "daemontools-native" | |||
33 | DEPENDS_class-native = "" | 33 | DEPENDS_class-native = "" |
34 | 34 | ||
35 | do_compile() { | 35 | do_compile() { |
36 | echo "int main() { return 0; }" >${S}/src/chkshsgr.c | ||
36 | ./package/compile | 37 | ./package/compile |
37 | } | 38 | } |
38 | 39 | ||