svn commit: r347977 - in head/lang/mono: . files
Romain Tartière
romain at FreeBSD.org
Wed Mar 12 11:46:04 UTC 2014
Author: romain
Date: Wed Mar 12 11:46:03 2014
New Revision: 347977
URL: http://svnweb.freebsd.org/changeset/ports/347977
QAT: https://qat.redports.org/buildarchive/r347977/
Log:
Unbreak relative paths for xbuild
PR: ports/187130
Submitted by: mva
Added:
head/lang/mono/files/patch-mcs_class_Microsoft.Build.Engine_Microsoft.Build.BuildEngine_DirectoryScanner.cs (contents, props changed)
Modified:
head/lang/mono/Makefile
Modified: head/lang/mono/Makefile
==============================================================================
--- head/lang/mono/Makefile Wed Mar 12 11:36:05 2014 (r347976)
+++ head/lang/mono/Makefile Wed Mar 12 11:46:03 2014 (r347977)
@@ -3,6 +3,7 @@
PORTNAME= mono
PORTVERSION= 3.2.8
+PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= http://download.mono-project.com/sources/${PORTNAME}/
Added: head/lang/mono/files/patch-mcs_class_Microsoft.Build.Engine_Microsoft.Build.BuildEngine_DirectoryScanner.cs
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/lang/mono/files/patch-mcs_class_Microsoft.Build.Engine_Microsoft.Build.BuildEngine_DirectoryScanner.cs Wed Mar 12 11:46:03 2014 (r347977)
@@ -0,0 +1,11 @@
+--- mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/DirectoryScanner.cs.orig 2014-02-28 08:27:40.000000000 +0100
++++ mcs/class/Microsoft.Build.Engine/Microsoft.Build.BuildEngine/DirectoryScanner.cs 2014-02-28 08:28:16.000000000 +0100
+@@ -98,7 +98,7 @@
+ int offset = 0;
+ string full_path;
+ if (Path.IsPathRooted (name)) {
+- full_path = name;
++ full_path = Path.GetFullPath (name);
+ baseDirectory = new DirectoryInfo (Path.GetPathRoot (name));
+ if (IsRunningOnWindows)
+ // skip the "drive:"
More information about the svn-ports-all
mailing list