gcc: fix previous commit

In a5057713a0394d189adc8b9abb0eb65592ecfc49
...I forgot to add a line continuation at the break in the 'if'
statement.

Reported-by: asavah <asavah@avh.od.ua>
Signed-off-by: Bryan Hundven <bryanhundven@gmail.com>
This commit is contained in:
Bryan Hundven 2016-01-07 10:42:44 -08:00
parent f72bd21389
commit 0d4275e0dd

View File

@ -266,7 +266,7 @@ do_gcc_core_backend() {
extra_config+=("--disable-__cxa_atexit")
fi
if [ -n "${CT_CC_GCC_ENABLE_CXX_FLAGS}"
if [ -n "${CT_CC_GCC_ENABLE_CXX_FLAGS}" \
-a "${mode}" = "baremetal" ]; then
extra_config+=("--enable-cxx-flags=${CT_CC_GCC_ENABLE_CXX_FLAGS}")
fi