diff options
author | Stephen Kelly <steveire@gmail.com> | 2016-08-27 16:32:49 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2016-09-19 19:36:14 (GMT) |
commit | dc510919443eced785ea972c2a7433c440dacd4f (patch) | |
tree | 6f8fdb3831b5a4cead1d3dac30eb475b75280bf8 /Source/cmLocalUnixMakefileGenerator3.cxx | |
parent | 76833149ec9f7d8605df901deceedc4b9c1c673a (diff) | |
download | CMake-dc510919443eced785ea972c2a7433c440dacd4f.zip CMake-dc510919443eced785ea972c2a7433c440dacd4f.tar.gz CMake-dc510919443eced785ea972c2a7433c440dacd4f.tar.bz2 |
Common: Use a string instead of enum for WorkingDirectory
Diffstat (limited to 'Source/cmLocalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmLocalUnixMakefileGenerator3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx index 6fd319e..3f8dc17 100644 --- a/Source/cmLocalUnixMakefileGenerator3.cxx +++ b/Source/cmLocalUnixMakefileGenerator3.cxx @@ -94,7 +94,7 @@ static std::string cmSplitExtension(std::string const& in, std::string& base) cmLocalUnixMakefileGenerator3::cmLocalUnixMakefileGenerator3( cmGlobalGenerator* gg, cmMakefile* mf) - : cmLocalCommonGenerator(gg, mf, cmOutputConverter::START_OUTPUT) + : cmLocalCommonGenerator(gg, mf, mf->GetCurrentBinaryDirectory()) { this->MakefileVariableSize = 0; this->ColorMakefile = false; |