mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 09:32:14 +02:00
Avoids: quilt-0.65-r0 do_package_qa: QA Issue: /usr/lib/quilt/ptest/quilt/scripts/edmail contained in package quilt-ptest requires /media/build1/poky/build/tmp/hosttools/perl, but no providers found in RDEPENDS_quilt-ptest? [file-rdeps] (From OE-Core rev: e0188f6ccebaaf7c9948c771d3da5b07eed09a94) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
394 B
PHP
20 lines
394 B
PHP
RDEPENDS_${PN} = "diffstat-native patch-native bzip2-native util-linux-native"
|
|
|
|
INHIBIT_AUTOTOOLS_DEPS = "1"
|
|
|
|
inherit native
|
|
|
|
PATCHTOOL = "patch"
|
|
EXTRA_OECONF = "--disable-nls"
|
|
EXTRA_OECONF_append_class-target = "--with-perl=perl"
|
|
|
|
do_configure () {
|
|
oe_runconf
|
|
}
|
|
|
|
do_install_append () {
|
|
# Dummy quiltrc file for patch.bbclass
|
|
install -d ${D}${sysconfdir}/
|
|
touch ${D}${sysconfdir}/quiltrc
|
|
}
|