mirror of
https://git.yoctoproject.org/poky
synced 2026-02-13 04:03:03 +01:00
Rename the recipe from util-linux-uuid to util-linux-libuuid which means we can drop the custom PACKAGES and FILES defintions which simplifies things. Also move the LICENSE setting to the libuuid recipe so that it is correctly applied to the right packages. This means the standard definitions from bitbake.conf are used, avoiding errors from situations where users have customised settings causing failures. (From OE-Core rev: 65efd76198ad805060fe28714765cd423fa748dc) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
491 B
BlitzBasic
17 lines
491 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_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"
|