Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
fc99db02
Commit
fc99db02
authored
Dec 04, 2009
by
Oswald Buddenhagen
Browse files
make the "make...entering..." regexp accept mingw32-make as well
patch by Robert de Vries
parent
3ef32636
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/projectexplorer/gccparser.cpp
View file @
fc99db02
...
...
@@ -46,7 +46,7 @@ GccParser::GccParser()
m_regExpLinker
.
setMinimal
(
true
);
//make[4]: Entering directory `/home/kkoehne/dev/ide-explorer/src/plugins/qtscripteditor'
m_makeDir
.
setPattern
(
"^make.*: (
\\
w+) directory .(.+).$"
);
m_makeDir
.
setPattern
(
"^
(?:mingw32-)?
make.*: (
\\
w+) directory .(.+).$"
);
m_makeDir
.
setMinimal
(
true
);
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment