summaryrefslogtreecommitdiff
path: root/dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2012-05-02 23:12:29 +0200
committerJohannes Huber <johu@gentoo.org>2012-05-02 23:12:29 +0200
commite011152254bc7c27f6d5ebcede5dae420644c5fe (patch)
treeae51736b840f99db3c7e392139f7ce1e34ddf0df /dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch
parent2fee0a8bc0bbc36510d489a1f67978e9c1a19eb0 (diff)
downloadkde-e011152254bc7c27f6d5ebcede5dae420644c5fe.tar.gz
kde-e011152254bc7c27f6d5ebcede5dae420644c5fe.tar.bz2
kde-e011152254bc7c27f6d5ebcede5dae420644c5fe.zip
[dev-util/cmake] Moved to tree.
(Portage version: 2.2.0_alpha101/git/Linux i686, unsigned Manifest commit)
Diffstat (limited to 'dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch')
-rw-r--r--dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch b/dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch
deleted file mode 100644
index ceb205ff586..00000000000
--- a/dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-Patch by Heiko Przybyl
-
---- Source/cmComputeLinkInformation.cxx
-+++ Source/cmComputeLinkInformation.cxx
-@@ -1686,6 +1686,14 @@ std::string cmComputeLinkInformation::Ge
- for(std::vector<std::string>::const_iterator ri = runtimeDirs.begin();
- ri != runtimeDirs.end(); ++ri)
- {
-+ // Do not add duplicates.
-+ // I'd like to have that check already in the list generation code
-+ // but that would need lots of more changes, even in ExpandListArgument().
-+ if(*sep != '\0' && (rpath + sep).find(*ri + sep) != std::string::npos)
-+ {
-+ //std::cerr << "ignoring duplicate: '" << *ri << "' in '" << rpath << "'" << std::endl;
-+ continue;
-+ }
- // Separate from previous path.
- rpath += sep;
- sep = this->GetRuntimeSep().c_str();