diff options
author | Saul Wold <sgw@linux.intel.com> | 2013-02-14 14:12:51 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-02-14 23:08:35 +0000 |
commit | 8c8b70c2edac261fcc260acd0ddd940e9b1e3a1e (patch) | |
tree | 30e5c99549d85befc0ade592086122c0913c0fcd /meta | |
parent | 72fdc8ed09ca82008c57b7bc8a090d25332def37 (diff) | |
download | poky-8c8b70c2edac261fcc260acd0ddd940e9b1e3a1e.tar.gz |
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 <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/remake/remake_git.bb | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/meta/recipes-devtools/remake/remake_git.bb b/meta/recipes-devtools/remake/remake_git.bb index 7e9857e972..42c4d4879f 100644 --- a/meta/recipes-devtools/remake/remake_git.bb +++ b/meta/recipes-devtools/remake/remake_git.bb | |||
@@ -13,13 +13,11 @@ DEPENDS += "readline" | |||
13 | PROVIDES += "make" | 13 | PROVIDES += "make" |
14 | 14 | ||
15 | do_configure_prepend() { | 15 | do_configure_prepend() { |
16 | # remove the default LINGUAS since we are not going to generate languages | ||
17 | rm po/LINGUAS | ||
18 | touch po/LINGUAS | ||
16 | # create config.rpath which required by configure.ac | 19 | # create config.rpath which required by configure.ac |
17 | autopoint || touch config.rpath | 20 | autopoint || touch config.rpath |
18 | } | 21 | } |
19 | 22 | ||
20 | do_compile_prepend() { | ||
21 | # updating .po and other gnu build files | ||
22 | make update | ||
23 | } | ||
24 | |||
25 | BBCLASSEXTEND = "native" | 23 | BBCLASSEXTEND = "native" |