mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Dependencies didn't have their whitespaces escaped. This is needed for things like the Platform SDK.
This commit is contained in:
parent
b458382d75
commit
23daefc02e
1 changed files with 1 additions and 1 deletions
|
@ -2555,7 +2555,7 @@ public class GnuMakefileGenerator implements IManagedBuilderMakefileGenerator {
|
|||
if (addlDeps != null && addlDeps.length > 0) {
|
||||
calculatedDependencies = new String();
|
||||
for (int i=0; i<addlDeps.length; i++) {
|
||||
calculatedDependencies += WHITESPACE + addlDeps[i].toString();
|
||||
calculatedDependencies += WHITESPACE + escapeWhitespaces(addlDeps[i].toString());
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue