summaryrefslogtreecommitdiffstats
path: root/Source/cmLinkDirectoriesCommand.cxx
diff options
context:
space:
mode:
authorStephen Kelly <steveire@gmail.com>2015-07-18 11:52:46 (GMT)
committerStephen Kelly <steveire@gmail.com>2015-07-18 11:56:48 (GMT)
commit881613c4abbbca35223678d6b17da418958a0005 (patch)
tree7cf2425576dd4828d69099e807400c32d83f1bec /Source/cmLinkDirectoriesCommand.cxx
parent357342602db67e456e9afc9697328d490ab0fc41 (diff)
downloadCMake-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.cxx2
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());
}