mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 09:10:32 -04:00
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)
23 lines
809 B
C#
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 );
|
|
|