diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-03-17 14:27:01 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-03-17 14:27:01 (GMT) |
commit | d83ef53a1293899c0ab58aca184b7d5866051876 (patch) | |
tree | 1f63d53d511ba1fb48eddce54f6cd6d3827e979a /Source/cmGlobalUnixMakefileGenerator3.cxx | |
parent | fb4aff058d2595078300b682dc477f0ccba6d31b (diff) | |
download | CMake-d83ef53a1293899c0ab58aca184b7d5866051876.zip CMake-d83ef53a1293899c0ab58aca184b7d5866051876.tar.gz CMake-d83ef53a1293899c0ab58aca184b7d5866051876.tar.bz2 |
Rename local 'dir_max' variables to 'dir'
The code is not computing the maximum length directory, as is the
case in cmLocalVisualStudioGenerator::ComputeLongestObjectDirectory.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index 4632071..e37ee10 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -111,12 +111,12 @@ cmGlobalUnixMakefileGenerator3 cmTarget* target = gt->Target; // Compute full path to object file directory for this target. - std::string dir_max; - dir_max += gt->Makefile->GetCurrentOutputDirectory(); - dir_max += "/"; - dir_max += gt->LocalGenerator->GetTargetDirectory(*target); - dir_max += "/"; - gt->ObjectDirectory = dir_max; + std::string dir; + dir += gt->Makefile->GetCurrentOutputDirectory(); + dir += "/"; + dir += gt->LocalGenerator->GetTargetDirectory(*target); + dir += "/"; + gt->ObjectDirectory = dir; } void cmGlobalUnixMakefileGenerator3::Configure() |