AWS Greengrass: skip file-level dependencies in QA checks

In previous Yocto versions this recipe throws an warning about
the file dependencies however in Yocto 2.4 this throws a build error.
To avoid the build error we skip the QA check at file-level dependencies.

Signed-off-by: Arturo Buzarra <arturo.buzarra@digi.com>
This commit is contained in:
Arturo Buzarra 2018-01-15 16:42:15 +01:00
parent 02504c6730
commit c741dc365a
1 changed files with 1 additions and 1 deletions

View File

@ -198,6 +198,6 @@ USERADD_PARAM_${PN} = "-r -M -N -g ggc_group -s /bin/false ggc_user"
# Binary was already stripped
# No GNU_HASH in the elf binary
#
INSANE_SKIP_${PN} += "already-stripped ldflags"
INSANE_SKIP_${PN} += "already-stripped ldflags file-rdeps"
RDEPENDS_${PN} += "ca-certificates python-argparse python-json python-numbers sqlite3"