mirror of
https://git.yoctoproject.org/poky
synced 2026-02-21 17:09:42 +01:00
License-Update: add EUPL-1.2. See74f3265b9a0001-tests-ts-kill-decode-avoid-using-shell-built-in-kill.patch is a backported patch to fix kill/decode test case. 0001-lsfd-mkfds-foreign-sockets-skip-when-lacking-sock_di.patch is used to fix testcase failure of lsfd/mkfds-foreign-sockets. The su tests (su/environ for now) are removed when 'pam' is not in PACKAGECONFIG. This is because su is not enabled in such case. lsfd/option-inet is removed out of the excluded list because upstream has fixed the issue:eaa3870880(From OE-Core rev: ed76e5fbec0f1926c14aedbb03ca1421c3920355) Signed-off-by: Chen Qi <Qi.Chen@windriver.com> Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
535 B
BlitzBasic
20 lines
535 B
BlitzBasic
# To allow util-linux to optionally build-depend on cryptsetup, libuuid is
|
|
# split out of the main recipe, as it's needed by cryptsetup
|
|
|
|
require util-linux.inc
|
|
|
|
inherit autotools gettext pkgconfig
|
|
|
|
S = "${WORKDIR}/util-linux-${PV}"
|
|
|
|
EXTRA_AUTORECONF += "--exclude=gtkdocize"
|
|
EXTRA_OECONF += "--disable-all-programs --enable-libuuid"
|
|
|
|
LICENSE = "BSD-3-Clause"
|
|
|
|
do_install:append() {
|
|
rm -rf ${D}${datadir} ${D}${bindir} ${D}${base_bindir} ${D}${sbindir} ${D}${base_sbindir} ${D}${exec_prefix}/sbin
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|