mirror of
https://git.yoctoproject.org/poky
synced 2026-02-07 01:06:37 +01:00
remake fails with errors during configure due to the out of tree build changes.
This ensures the configure commands run correctly on files in ${S}.
[YOCTO #4139]
(From OE-Core rev: 166c123bc0d121eeea39db71e63940fa2f8a3f7b)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
26 lines
765 B
BlitzBasic
26 lines
765 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"
|
|
|
|
PV = "3.82+dbg-0.8+git${SRCPV}"
|
|
|
|
DEPENDS += "readline"
|
|
PROVIDES += "make"
|
|
|
|
do_configure_prepend() {
|
|
# remove the default LINGUAS since we are not going to generate languages
|
|
rm ${S}/po/LINGUAS
|
|
touch ${S}/po/LINGUAS
|
|
# create config.rpath which required by configure.ac
|
|
( cd ${S}; autopoint || touch config.rpath )
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|