diff options
author | Christian Kandeler <christian.kandeler@qt.io> | 2020-04-07 13:49:34 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@qt.io> | 2020-04-07 15:20:22 +0000 |
commit | 7745eacc7afae4acf3e07325ab01cf6e6821037c (patch) | |
tree | 2a125e0c7530d3ae252a740b42db4cd1d34f805a /src/plugins/projectexplorer/xcodebuildparser.cpp | |
parent | b22bb5a9a7aa22fe13e1282c5db851688ec4d83f (diff) | |
download | qt-creator-7745eacc7afae4acf3e07325ab01cf6e6821037c.tar.gz |
Output parsers: Generalize the search directory concept
All parsers can now have search directories, not just the GnuMakeParser.
This allows us to get rid of the "task mangling", removing another
instance where the order of parsers in the chain mattered.
Task-number: QTCREATORBUG-22665
Change-Id: Id0d55522ae6800afd9f50ff36546224b0d8bb382
Reviewed-by: hjk <hjk@qt.io>
Diffstat (limited to 'src/plugins/projectexplorer/xcodebuildparser.cpp')
-rw-r--r-- | src/plugins/projectexplorer/xcodebuildparser.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/projectexplorer/xcodebuildparser.cpp b/src/plugins/projectexplorer/xcodebuildparser.cpp index 13dc96ace9..5497641534 100644 --- a/src/plugins/projectexplorer/xcodebuildparser.cpp +++ b/src/plugins/projectexplorer/xcodebuildparser.cpp @@ -74,8 +74,8 @@ void XcodebuildParser::stdOutput(const QString &line) if (lne.endsWith(QLatin1String(signatureChangeEndsWithPattern))) { CompileTask task(Task::Warning, tr("Replacing signature"), - FilePath::fromString( - lne.left(lne.size() - QLatin1String(signatureChangeEndsWithPattern).size()))); + absoluteFilePath(FilePath::fromString( + lne.left(lne.size() - QLatin1String(signatureChangeEndsWithPattern).size())))); emit addTask(task, 1); return; } |