mirror of
https://git.yoctoproject.org/poky
synced 2026-02-24 18:39:40 +01:00
The 'make update' was using wget to get the gmo and other gnu files from upstream, since need to work cleanly in a non-networked or proxy environment this does not so well. Remove the list of languages from the LINGUAS file. [YOCTO #3745] (From OE-Core rev: 9987f210e3faf31bfeab35ae56606c8a577b3aa0) Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
24 lines
709 B
BlitzBasic
24 lines
709 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() {
|
|
# remove the default LINGUAS since we are not going to generate languages
|
|
rm po/LINGUAS
|
|
touch po/LINGUAS
|
|
# create config.rpath which required by configure.ac
|
|
autopoint || touch config.rpath
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|