summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Johanson <latexer@gentoo.org>2004-12-21 03:04:59 +0000
committerPeter Johanson <latexer@gentoo.org>2004-12-21 03:04:59 +0000
commit4cc469b3b21575fcbeb2713030e38a5dea00393b (patch)
tree1a2e83636666d00ae027c8f9b5ca6b9f69f8007e /dev-dotnet
parentversion bump (Manifest recommit) (diff)
downloadgentoo-2-4cc469b3b21575fcbeb2713030e38a5dea00393b.tar.gz
gentoo-2-4cc469b3b21575fcbeb2713030e38a5dea00393b.tar.bz2
gentoo-2-4cc469b3b21575fcbeb2713030e38a5dea00393b.zip
Add a missing patch. Oops.
Diffstat (limited to 'dev-dotnet')
-rw-r--r--dev-dotnet/mono/ChangeLog6
-rw-r--r--dev-dotnet/mono/files/mcs-1.0.5-pathfix.diff12
2 files changed, 17 insertions, 1 deletions
diff --git a/dev-dotnet/mono/ChangeLog b/dev-dotnet/mono/ChangeLog
index 48177eaf8442..d3099a939ce6 100644
--- a/dev-dotnet/mono/ChangeLog
+++ b/dev-dotnet/mono/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-dotnet/mono
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono/ChangeLog,v 1.37 2004/12/21 01:14:54 latexer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/mono/ChangeLog,v 1.38 2004/12/21 03:04:59 latexer Exp $
+
+ 20 Dec 2004; Peter Johanson <latexer@gentoo.org>
+ +files/mcs-1.0.5-pathfix.diff:
+ Add a missing patch. Oops.
*mono-1.0.5-r3 (20 Dec 2004)
diff --git a/dev-dotnet/mono/files/mcs-1.0.5-pathfix.diff b/dev-dotnet/mono/files/mcs-1.0.5-pathfix.diff
new file mode 100644
index 000000000000..fdfd271ebbc8
--- /dev/null
+++ b/dev-dotnet/mono/files/mcs-1.0.5-pathfix.diff
@@ -0,0 +1,12 @@
+diff -aur mcs-1.0.5-orig/class/corlib/System.IO/Path.cs mcs-1.0.5/class/corlib/System.IO/Path.cs
+--- mcs-1.0.5-orig/class/corlib/System.IO/Path.cs 2004-12-07 17:29:31.000000000 -0500
++++ mcs-1.0.5/class/corlib/System.IO/Path.cs 2004-12-15 20:45:25.060090272 -0500
+@@ -386,7 +386,7 @@
+ //if (root == path) return path;
+
+ // STEP 3: split the directories, this gets rid of consecutative "/"'s
+- string [] dirs = path.Split (DirectorySeparatorChar, AltDirectorySeparatorChar);
++ string [] dirs = path.Split (DirectorySeparatorChar);
+ // STEP 4: Get rid of directories containing . and ..
+ int target = 0;
+