[OE-core] [PATCH v2] no-static-libs: Ensure correct whitespace is set for _append

Saul Wold sgw at linux.intel.com
Mon Mar 7 23:18:38 UTC 2016


Adjusted white space in the DISABLE_STATIC to make output of the -e
option more readable.

Before:
 " --enable-opt1 --with_opt1=${libdir}${DISABLE_STATIC}
After
 " --enable-opt1 --with_opt1=${libdir} ${DISABLE_STATIC}

Signed-off-by: Saul Wold <sgw at linux.intel.com>
---
v2: Fixed commit message to show what was getting fixed

 meta/conf/distro/include/no-static-libs.inc | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/meta/conf/distro/include/no-static-libs.inc b/meta/conf/distro/include/no-static-libs.inc
index 6c0f859..0ab99c0 100644
--- a/meta/conf/distro/include/no-static-libs.inc
+++ b/meta/conf/distro/include/no-static-libs.inc
@@ -1,4 +1,4 @@
-DISABLE_STATIC = " --disable-static"
+DISABLE_STATIC = "--disable-static"
 
 # qemu aborts on unrecognised option
 DISABLE_STATIC_pn-qemu = ""
@@ -27,6 +27,6 @@ DISABLE_STATIC_pn-nativesdk-openssl = ""
 # libssp-static-dev included in build-appliance
 DISABLE_STATIC_pn-gcc-runtime = ""
 
-EXTRA_OECONF_append = "${DISABLE_STATIC}"
+EXTRA_OECONF_append = " ${DISABLE_STATIC}"
 
-EXTRA_OECMAKE_append_pn-libical = "-DSHARED_ONLY=True"
+EXTRA_OECMAKE_append_pn-libical = " -DSHARED_ONLY=True"
-- 
2.5.0




More information about the Openembedded-core mailing list