|
@@ -101,9 +101,9 @@ def remove_options_tail (in_string):
|
|
|
from itertools import takewhile
|
|
|
return ' '.join(takewhile(lambda x: not x.startswith('-'), in_string.split(' ')))
|
|
|
|
|
|
-EXTRA_OEMAKE += "LD=${@remove_options_tail(d.getVar('LD'))}"
|
|
|
+EXTRA_OEMAKE += "LD='${@remove_options_tail(d.getVar('LD'))}'"
|
|
|
|
|
|
-EXTRA_OEMAKE += "CC=${@remove_options_tail(d.getVar('CC'))}"
|
|
|
+EXTRA_OEMAKE += "CC='${@remove_options_tail(d.getVar('CC'))}'"
|
|
|
|
|
|
# Verbose builds, no -Werror
|
|
|
EXTRA_OEMAKE += "V=1 E=0"
|