mirror of
https://git.yoctoproject.org/poky
synced 2026-02-05 16:28:43 +01:00
* it's autodetected from sysroot * add PACKAGECONFIG to make it deterministic (From OE-Core rev: 2eb394b6111a7df730e38604e8efe8bce5c1653a) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
17 lines
516 B
PHP
17 lines
516 B
PHP
SUMMARY = "Tool for applying a patch file"
|
|
DESCRIPTION = "patch takes a patch file containing a difference listing \
|
|
produced by the diff program and applies those differences to one or more \
|
|
original files, producing patched versions."
|
|
SECTION = "utils"
|
|
|
|
SRC_URI = "${GNU_MIRROR}/patch/patch-${PV}.tar.gz"
|
|
S = "${WORKDIR}/patch-${PV}"
|
|
|
|
inherit autotools update-alternatives
|
|
|
|
PACKAGECONFIG ??= ""
|
|
PACKAGECONFIG[attr] = "--enable-xattr,--disable-xattr,attr"
|
|
|
|
ALTERNATIVE_${PN} = "patch"
|
|
ALTERNATIVE_PRIORITY = "100"
|