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-01-22 17:33:39 +0100
committerJohannes Huber <johu@gentoo.org>2012-01-22 17:33:39 +0100
commitd0990baadb44665630f0447c8f7beaeb5ee6a77a (patch)
tree65ab39b9978fb011b885484142a68489c7abd72f /dev-util/cmake/files/cmake-2.6.3-no-duplicates-in-rpath.patch
parent4ef2eec1a7cbd2c3635d36eecdf8ffcc6e2d249f (diff)
downloadkde-d0990baadb44665630f0447c8f7beaeb5ee6a77a.tar.gz
kde-d0990baadb44665630f0447c8f7beaeb5ee6a77a.tar.bz2
kde-d0990baadb44665630f0447c8f7beaeb5ee6a77a.zip
[dev-util/cmake] Remove patched version to use eselected boost. Latest boost is wanted see bug 335108 resolution.
(Portage version: 2.2.0_alpha84/git/Linux x86_64, 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();