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:
-rw-r--r--main/ChangeLog4
-rw-r--r--main/mdtool.in3
2 files changed, 5 insertions, 2 deletions
diff --git a/main/ChangeLog b/main/ChangeLog
index 34c4e4d419..72f148e6df 100644
--- a/main/ChangeLog
+++ b/main/ChangeLog
@@ -1,3 +1,7 @@
+2009-08-11 Lluis Sanchez Gual <lluis@novell.com>
+
+ * mdtool.in: Properly quote the provided arguments.
+
2009-07-31 Lluis Sanchez Gual <lluis@novell.com>
* Main.sln:
diff --git a/main/mdtool.in b/main/mdtool.in
index 677480adbb..30f44c99e2 100644
--- a/main/mdtool.in
+++ b/main/mdtool.in
@@ -11,5 +11,4 @@ else
_MONO_OPTIONS=$MONO_OPTIONS
fi
-$MONO_EXEC $_MONO_OPTIONS "$EXE_PATH" $*
-
+$MONO_EXEC $_MONO_OPTIONS "$EXE_PATH" "$@"