Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius Ungureanu <teromario@yahoo.com>2018-11-26 16:48:04 +0300
committerGitHub <noreply@github.com>2018-11-26 16:48:04 +0300
commitbde3d1492833d299fc67b48ca106a7851363f062 (patch)
tree3a608b3fb8b058549cb148d85c0f71e8118fca0e /main/src/addins/MonoDevelop.Autotools
parent20eebe01beec5dd77c6b925134925fc85ce89d89 (diff)
Fix warnings shown by MonoDevelop.Analyzers (#6657)
* [Core] Name is already localized * Fix up invalid GettextCatalog.GetString calls or optimize them * Optimize SignatureHelpParameterHintingData appends * Fix extra allocatins in appends found by string append analyzer
Diffstat (limited to 'main/src/addins/MonoDevelop.Autotools')
-rw-r--r--main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs b/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
index e61eb4635d..8fa40ae4cb 100644
--- a/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
+++ b/main/src/addins/MonoDevelop.Autotools/CustomMakefile.cs
@@ -117,7 +117,8 @@ namespace MonoDevelop.Autotools
foreach (string s in list)
sb.AppendFormat (" \\\n\t{0}", s);
} else if (list.Count == 1) {
- sb.Append (" " + list [0]);
+ sb.Append (" ");
+ sb.Append (list [0]);
}
return sb.ToString ();