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
Tobias Hunger
qt-creator
Commits
70adf628
Commit
70adf628
authored
Nov 30, 2009
by
dt
Browse files
Fix endless recursion, broken somewhere in the buildconfiguration port
parent
a741261f
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/plugins/cmakeprojectmanager/cmakerunconfiguration.cpp
View file @
70adf628
...
...
@@ -194,7 +194,7 @@ ProjectExplorer::Environment CMakeRunConfiguration::baseEnvironment() const
}
else
if
(
m_baseEnvironmentBase
==
CMakeRunConfiguration
::
SystemEnvironmentBase
)
{
env
=
ProjectExplorer
::
Environment
::
systemEnvironment
();
}
else
if
(
m_baseEnvironmentBase
==
CMakeRunConfiguration
::
BuildEnvironmentBase
)
{
env
=
environment
();
env
=
project
()
->
activeBuildConfiguration
()
->
environment
();
}
return
env
;
}
...
...
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