1
0
Fork 0
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:
Doug Schaefer 2006-08-12 05:25:57 +00:00
parent b458382d75
commit 23daefc02e

View file

@ -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());
}
}