diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-07-18 11:52:46 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-07-18 11:56:48 (GMT) |
commit | 881613c4abbbca35223678d6b17da418958a0005 (patch) | |
tree | 7cf2425576dd4828d69099e807400c32d83f1bec /Source/cmLinkDirectoriesCommand.cxx | |
parent | 357342602db67e456e9afc9697328d490ab0fc41 (diff) | |
download | CMake-881613c4abbbca35223678d6b17da418958a0005.zip CMake-881613c4abbbca35223678d6b17da418958a0005.tar.gz CMake-881613c4abbbca35223678d6b17da418958a0005.tar.bz2 |
cmMakefile: Remove special handling of LINK_DIRECTORIES property.
There is no need to handle it in a special way.
Diffstat (limited to 'Source/cmLinkDirectoriesCommand.cxx')
-rw-r--r-- | Source/cmLinkDirectoriesCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLinkDirectoriesCommand.cxx b/Source/cmLinkDirectoriesCommand.cxx index f486bf7..b6c0072 100644 --- a/Source/cmLinkDirectoriesCommand.cxx +++ b/Source/cmLinkDirectoriesCommand.cxx @@ -65,5 +65,5 @@ void cmLinkDirectoriesCommand::AddLinkDir(std::string const& dir) unixPath = tmp; } } - this->Makefile->AddLinkDirectory(unixPath); + this->Makefile->AppendProperty("LINK_DIRECTORIES", unixPath.c_str()); } |