Merge "Don't include empty-string arguments in compile_commands.json"
This commit is contained in:
commit
c8b28a367d
|
@ -181,7 +181,7 @@ func generateCompdbProject(compiledModule CompiledInterface, ctx android.Singlet
|
||||||
func evalAndSplitVariable(ctx android.SingletonContext, str string) ([]string, error) {
|
func evalAndSplitVariable(ctx android.SingletonContext, str string) ([]string, error) {
|
||||||
evaluated, err := ctx.Eval(pctx, str)
|
evaluated, err := ctx.Eval(pctx, str)
|
||||||
if err == nil {
|
if err == nil {
|
||||||
return strings.Split(evaluated, " "), nil
|
return strings.Fields(evaluated), nil
|
||||||
}
|
}
|
||||||
return []string{""}, err
|
return []string{""}, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue