diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-02 11:55:27 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-04-02 17:57:07 +0100 |
commit | f988ca1105e6561c544c352de458234d2da8f307 (patch) | |
tree | bf05937a23ac65ba070a1381c8fc0645cdc63748 /meta/recipes-devtools/remake/remake_git.bb | |
parent | f802d7f0c409836cdd0ee8b32fd06eeaea8cca93 (diff) | |
download | poky-f988ca1105e6561c544c352de458234d2da8f307.tar.gz |
remake: Fix out of tree builds
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>
Diffstat (limited to 'meta/recipes-devtools/remake/remake_git.bb')
-rw-r--r-- | meta/recipes-devtools/remake/remake_git.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/remake/remake_git.bb b/meta/recipes-devtools/remake/remake_git.bb index a7cf54e320..afbc5d0710 100644 --- a/meta/recipes-devtools/remake/remake_git.bb +++ b/meta/recipes-devtools/remake/remake_git.bb | |||
@@ -16,10 +16,10 @@ PROVIDES += "make" | |||
16 | 16 | ||
17 | do_configure_prepend() { | 17 | do_configure_prepend() { |
18 | # remove the default LINGUAS since we are not going to generate languages | 18 | # remove the default LINGUAS since we are not going to generate languages |
19 | rm po/LINGUAS | 19 | rm ${S}/po/LINGUAS |
20 | touch po/LINGUAS | 20 | touch ${S}/po/LINGUAS |
21 | # create config.rpath which required by configure.ac | 21 | # create config.rpath which required by configure.ac |
22 | autopoint || touch config.rpath | 22 | ( cd ${S}; autopoint || touch config.rpath ) |
23 | } | 23 | } |
24 | 24 | ||
25 | BBCLASSEXTEND = "native" | 25 | BBCLASSEXTEND = "native" |