meta-phosphor: missing space on CFLAG_append
FOO_append is effectively an alias for 'FOO=FOO+FOO_append',
so it is a common pattern to preceed the FOO_append string
with a space.
Right: FOO_append = " bar"
Results in FOO="foo bar"
Wrong: FOO_append = "bar"
Results in FOO="foobar"
Fix incorrect CFLAG_append entries in recipes to avoid
compile errors like:
Error: configure: error: C compiler cannot create
executables
Change-Id: Id81af5666b173aca35eb28f541a8325db1d438fd
Signed-off-by: Saqib Khan <khansa@us.ibm.com>
2 files changed