ports/devel/monodevelop/files/patch-src_addins_MonoDevelop.Autotools_SolutionDeployer.cs
Greg Lewis 3fb3b0682c MonoDevelop is a free GNOME integrated development environment (IDE)
primarily designed for C# and other .NET languages.

The main features of MonoDevelop are:

	* Code Completion
	* Class Management
	* Built-in Help
	* Project Support
	* Add-ins

PR:		117545
Submitted by:	Romain Tartiere <romain at blogreen.org> (latest version)
2009-09-07 17:16:23 +00:00

23 lines
809 B
C#

$FreeBSD$
--- src/addins/MonoDevelop.Autotools/SolutionDeployer.cs.orig
+++ src/addins/MonoDevelop.Autotools/SolutionDeployer.cs
@@ -171,7 +171,7 @@
chainedOutput.ChainWriter (monitor.Log);
chainedOutput.ChainWriter (sw);
- ProcessWrapper process = Runtime.ProcessService.StartProcess ( "make",
+ ProcessWrapper process = Runtime.ProcessService.StartProcess ( "gmake",
"dist",
baseDir,
chainedOutput,
@@ -180,7 +180,7 @@
process.WaitForOutput ();
if ( process.ExitCode > 0 )
- throw new Exception ( GettextCatalog.GetString ("An unspecified error occurred while running '{0}'", "make dist") );
+ throw new Exception ( GettextCatalog.GetString ("An unspecified error occurred while running '{0}'", "gmake dist") );
monitor.Step ( 1 );