XCode: Fix the output paths for extra compilers with fileFixify()
This ensures that the generated XCode project can correctly find any files that are referenced via a path containing "..". Task-number: QTBUG-35131 Change-Id: I049bc2279b4c515a82acd61142d25b8c240e8f6e Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@qt.io>
This commit is contained in:
parent
e4e87a2ece
commit
44137dc65a
@ -779,8 +779,9 @@ ProjectBuilderMakefileGenerator::writeMakeParts(QTextStream &t)
|
|||||||
mkt << "\\\n\t";
|
mkt << "\\\n\t";
|
||||||
++added;
|
++added;
|
||||||
const QString file_name = fileFixify(fn, FileFixifyFromOutdir);
|
const QString file_name = fileFixify(fn, FileFixifyFromOutdir);
|
||||||
|
const QString tmpOut = fileFixify(tmp_out.first().toQString(), FileFixifyFromOutdir);
|
||||||
mkt << ' ' << escapeDependencyPath(Option::fixPathToTargetOS(
|
mkt << ' ' << escapeDependencyPath(Option::fixPathToTargetOS(
|
||||||
replaceExtraCompilerVariables(tmp_out.first().toQString(), file_name, QString(), NoShell)));
|
replaceExtraCompilerVariables(tmpOut, file_name, QString(), NoShell)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user