mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 01:06:37 +01:00
remake is a patched version of GNU Make that adds improved error reporting, the ability to trace execution in a comprehensible way, and a debugger. [YOCTO #2402] (From OE-Core rev: 823fab378bd46da6a296a67f981dffb31b1c8061) Signed-off-by: Wenzong Fan <wenzong.fan@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
679 B
BlitzBasic
26 lines
679 B
BlitzBasic
PR = "r0"
|
|
LICENSE = "GPLv2"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504 \
|
|
file://tests/COPYING;md5=d32239bcb673463ab874e80d47fae504 \
|
|
file://glob/COPYING.LIB;md5=4a770b67e6be0f60da244beb2de0fce4"
|
|
require remake.inc
|
|
|
|
SRC_URI += "file://version-remake.texi.patch"
|
|
SRCREV = "414d6e84121c6740ff5079370c905dea0f0e1ddb"
|
|
S = "${WORKDIR}/git"
|
|
|
|
DEPENDS += "readline"
|
|
PROVIDES += "make"
|
|
|
|
do_configure_prepend() {
|
|
# create config.rpath which required by configure.ac
|
|
autopoint || touch config.rpath
|
|
}
|
|
|
|
do_compile_prepend() {
|
|
# updating .po and other gnu build files
|
|
make update
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|