Entering anything other than a simple string in CBS Makefile builder's build / clean commands don't parse correctly and are not passed to make as expected.
I am referring to these fields:

For example, enter make all with an extra space leads to a make error:

This is happening because the builder is simply splitting on " " which leads to an extra empty command line option
|
buildCommand = buildCmd.split(" "); //$NON-NLS-1$ |
This also means other, more complicated cases, such as quoted strings are not handled properly either:

leads to:
