Date: Wed, 12 Mar 2014 11:50:01 GMT From: dfilter@FreeBSD.ORG (dfilter service) To: mono@FreeBSD.org Subject: Re: ports/187130: commit references a PR Message-ID: <201403121150.s2CBo1PR008697@freefall.freebsd.org>
next in thread | raw e-mail | index | archive | help
The following reply was made to PR ports/187130; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/187130: commit references a PR Date: Wed, 12 Mar 2014 11:46:11 +0000 (UTC) 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:" _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201403121150.s2CBo1PR008697>