summaryrefslogtreecommitdiff
path: root/dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-09-12 03:59:34 +1000
committerMichael Palimaka <kensington@gentoo.org>2013-09-12 03:59:34 +1000
commitb9d2559d5fe28c3aabcfa6d3d35ebb7a280a527c (patch)
treeaa972874731bc222c3b24036eaf06d95ffa76c2e /dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch
parentce72113b6e2012b673815f778cafe6c8b91f3585 (diff)
downloadkde-b9d2559d5fe28c3aabcfa6d3d35ebb7a280a527c.tar.gz
kde-b9d2559d5fe28c3aabcfa6d3d35ebb7a280a527c.tar.bz2
kde-b9d2559d5fe28c3aabcfa6d3d35ebb7a280a527c.zip
[dev-util/cmake] Moved to portage.
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();