diff options
author | Christian Kandeler <[email protected]> | 2020-04-07 13:49:34 +0200 |
---|---|---|
committer | Christian Kandeler <[email protected]> | 2020-04-07 15:20:22 +0000 |
commit | 7745eacc7afae4acf3e07325ab01cf6e6821037c (patch) | |
tree | 2a125e0c7530d3ae252a740b42db4cd1d34f805a /src/plugins/qmakeprojectmanager/qmakeparser.cpp | |
parent | b22bb5a9a7aa22fe13e1282c5db851688ec4d83f (diff) |
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 <[email protected]>
Diffstat (limited to 'src/plugins/qmakeprojectmanager/qmakeparser.cpp')
-rw-r--r-- | src/plugins/qmakeprojectmanager/qmakeparser.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/qmakeprojectmanager/qmakeparser.cpp b/src/plugins/qmakeprojectmanager/qmakeparser.cpp index 46ad10a0a00..bbc711e9582 100644 --- a/src/plugins/qmakeprojectmanager/qmakeparser.cpp +++ b/src/plugins/qmakeprojectmanager/qmakeparser.cpp @@ -61,7 +61,7 @@ void QMakeParser::stdError(const QString &line) type = Task::Error; emit addTask(BuildSystemTask(type, description, - FilePath::fromUserInput(fileName), + absoluteFilePath(FilePath::fromUserInput(fileName)), m_error.cap(2).toInt() /* line */), 1); return; |