Skip to content
Snippets Groups Projects
Commit 70adf628 authored by dt's avatar dt
Browse files

Fix endless recursion, broken somewhere in the buildconfiguration port

parent a741261f
Branches
Tags
No related merge requests found
......@@ -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;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment