From: Saul Wold Date: Thu, 14 Feb 2013 22:12:51 +0000 (-0800) Subject: remake: do not create po files X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8c8b70c2edac261fcc260acd0ddd940e9b1e3a1e;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git remake: do not create po files 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 Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/remake/remake_git.bb b/meta/recipes-devtools/remake/remake_git.bb index 7e9857e972d..42c4d4879f2 100644 --- a/meta/recipes-devtools/remake/remake_git.bb +++ b/meta/recipes-devtools/remake/remake_git.bb @@ -13,13 +13,11 @@ 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 } -do_compile_prepend() { - # updating .po and other gnu build files - make update -} - BBCLASSEXTEND = "native"