mirror of
https://git.yoctoproject.org/poky
synced 2026-03-28 10:02:21 +01:00
patch.bbclass orignally pointed at /usr/bin/quiltrc for an empty version to ensure that no user setting were picked up, change this to /etc/quiltrc in the Native sysroot since we now have a native sysconfdir. Make sure that the quiltrc is actually installed in the Native sysconfdir, not the target, so fix this after the recipe split. (From OE-Core rev: 1af73900cea82e63fb0f94e6f057144f723146ec) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
20 lines
398 B
PHP
20 lines
398 B
PHP
SRC_URI_append_build-darwin = "? file://non-gnu.patch "
|
|
RDEPENDS_${PN} = "diffstat-native patch-native bzip2-native util-linux-native"
|
|
|
|
INHIBIT_AUTOTOOLS_DEPS = "1"
|
|
|
|
inherit native
|
|
|
|
PATCHTOOL = "patch"
|
|
EXTRA_OECONF = "--disable-nls"
|
|
|
|
do_configure () {
|
|
oe_runconf
|
|
}
|
|
|
|
do_install_append () {
|
|
# Dummy quiltrc file for patch.bbclass
|
|
install -d ${D}${sysconfdir}/
|
|
touch ${D}${sysconfdir}/quiltrc
|
|
}
|