summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexys Jacob <ultrabug@gentoo.org>2012-11-04 17:20:15 +0000
committerAlexys Jacob <ultrabug@gentoo.org>2012-11-04 17:20:15 +0000
commit8ec28cfe42816d22b1512c81eb052854009e7c88 (patch)
treecbceb2899227a874bffe6e084b3aff9c6c2ccd7a /dev-db/mongodb
parentVersion bump, drop old (diff)
downloadgentoo-2-8ec28cfe42816d22b1512c81eb052854009e7c88.tar.gz
gentoo-2-8ec28cfe42816d22b1512c81eb052854009e7c88.tar.bz2
gentoo-2-8ec28cfe42816d22b1512c81eb052854009e7c88.zip
fix patch for 2.2 series, thanks to Hank Leininger
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key B658FA13)
Diffstat (limited to 'dev-db/mongodb')
-rw-r--r--dev-db/mongodb/ChangeLog5
-rw-r--r--dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch4
2 files changed, 6 insertions, 3 deletions
diff --git a/dev-db/mongodb/ChangeLog b/dev-db/mongodb/ChangeLog
index afc51b13f338..37be50c41632 100644
--- a/dev-db/mongodb/ChangeLog
+++ b/dev-db/mongodb/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-db/mongodb
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/ChangeLog,v 1.48 2012/11/04 14:23:25 ultrabug Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/mongodb/ChangeLog,v 1.49 2012/11/04 17:20:15 ultrabug Exp $
+
+ 04 Nov 2012; <alexys@gentoo.org> files/mongodb-2.2-r2-boost-1.50.patch:
+ Correct 2.2.x boost-1.50 patch thanks to Hank Leininger for spotting.
*mongodb-2.2.1 (04 Nov 2012)
*mongodb-2.2.0-r2 (04 Nov 2012)
diff --git a/dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch b/dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch
index 49a63af1e827..c8b146f5d87d 100644
--- a/dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch
+++ b/dev-db/mongodb/files/mongodb-2.2-r2-boost-1.50.patch
@@ -173,7 +173,7 @@
// skip hidden files and directories
- if (root.leaf()[0] == '.' && root.leaf() != ".")
-+ if (root.leaf().string()[0] == '.' && root.leaf() != ".")
++ if (root.leaf().string()[0] == '.' && root.leaf().string() != ".")
return;
if ( is_directory( root ) ) {
@@ -212,4 +212,4 @@
+// boost::filesystem::path::default_name_check( boost::filesystem::no_check );
+// #endif
- _name = argv[0]; \ No newline at end of file
+ _name = argv[0];