diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-08-24 17:58:19 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-08-27 18:07:43 (GMT) |
commit | c8fd23ec6f33eef8cf11d81938c379590080bd19 (patch) | |
tree | 75a04f4a2a037ededbee0a92628c103af03fc816 /Source/cmAddCustomTargetCommand.cxx | |
parent | 0897c3cf585853358ef7ec2bd180dbb2e3288b21 (diff) | |
download | CMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.zip CMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.tar.gz CMake-c8fd23ec6f33eef8cf11d81938c379590080bd19.tar.bz2 |
cmMakefile: return directories as const std::string&
Diffstat (limited to 'Source/cmAddCustomTargetCommand.cxx')
-rw-r--r-- | Source/cmAddCustomTargetCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAddCustomTargetCommand.cxx b/Source/cmAddCustomTargetCommand.cxx index 4655f58..82ee6b4 100644 --- a/Source/cmAddCustomTargetCommand.cxx +++ b/Source/cmAddCustomTargetCommand.cxx @@ -183,7 +183,7 @@ bool cmAddCustomTargetCommand::InitialPass( // Convert working directory to a full path. if (!working_directory.empty()) { - const char* build_dir = this->Makefile->GetCurrentBinaryDirectory(); + const std::string& build_dir = this->Makefile->GetCurrentBinaryDirectory(); working_directory = cmSystemTools::CollapseFullPath(working_directory, build_dir); } |