]> code.ossystems Code Review - openembedded-core.git/commitdiff
ed_0.5: Handle --disable-static option
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 15 Feb 2016 15:45:16 +0000 (15:45 +0000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 15 Feb 2016 16:28:25 +0000 (16:28 +0000)
Also clean up use of immediate expansion as there are cleaner mechanisms now.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/recipes-extended/ed/ed_0.5.bb

index 143e636546966ccd1f7483f8a26dc92cedc762cf..e2df13f4bc79c87fd08b3f7cfe56b17a8227d8e3 100644 (file)
@@ -15,7 +15,6 @@ inherit autotools texinfo
 
 EXTRA_OECONF = "'CC=${CC}' 'CXX=${CXX}' 'CFLAGS=${CFLAGS}' 'CXXFLAGS=${CXXFLAGS}' 'CPPFLAGS=${CPPFLAGS}' 'LDFLAGS=${LDFLAGS}'"
 
-CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--disable-dependency-tracking', ' ')}"
-CONFIGUREOPTS := "${@d.getVar('CONFIGUREOPTS', True).replace('--disable-silent-rules', ' ')}"
-
-
+CONFIGUREOPTS_remove = "--disable-dependency-tracking"
+CONFIGUREOPTS_remove = "--disable-silent-rules"
+EXTRA_OECONF_remove = "--disable-static"