diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-15 15:45:16 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-15 16:28:46 +0000 |
commit | 67ea65ed4ed36ebdc7c65160ec9e9b44774aab3f (patch) | |
tree | 9f16423de98a0bdc751ef6bff16cf2701aa5d0b5 /meta | |
parent | 438d6d6e7d8ca1a9d566bbea5b917a2b00a31f4e (diff) | |
download | poky-67ea65ed4ed36ebdc7c65160ec9e9b44774aab3f.tar.gz |
ed_0.5: Handle --disable-static option
Also clean up use of immediate expansion as there are cleaner mechanisms now.
(From OE-Core rev: 8d85e73b7279591190272536add909827144c623)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/ed/ed_0.5.bb | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/meta/recipes-extended/ed/ed_0.5.bb b/meta/recipes-extended/ed/ed_0.5.bb index 143e636546..e2df13f4bc 100644 --- a/meta/recipes-extended/ed/ed_0.5.bb +++ b/meta/recipes-extended/ed/ed_0.5.bb | |||
@@ -15,7 +15,6 @@ inherit autotools texinfo | |||
15 | 15 | ||
16 | EXTRA_OECONF = "'CC=${CC}' 'CXX=${CXX}' 'CFLAGS=${CFLAGS}' 'CXXFLAGS=${CXXFLAGS}' 'CPPFLAGS=${CPPFLAGS}' 'LDFLAGS=${LDFLAGS}'" | 16 | EXTRA_OECONF = "'CC=${CC}' 'CXX=${CXX}' 'CFLAGS=${CFLAGS}' 'CXXFLAGS=${CXXFLAGS}' 'CPPFLAGS=${CPPFLAGS}' 'LDFLAGS=${LDFLAGS}'" |
17 | 17 | ||
18 | CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--disable-dependency-tracking', ' ')}" | 18 | CONFIGUREOPTS_remove = "--disable-dependency-tracking" |
19 | CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--disable-silent-rules', ' ')}" | 19 | CONFIGUREOPTS_remove = "--disable-silent-rules" |
20 | 20 | EXTRA_OECONF_remove = "--disable-static" | |
21 | |||