diff --git a/Doc/Manual/Scilab.html b/Doc/Manual/Scilab.html
index f14296303..2aa1c8933 100644
--- a/Doc/Manual/Scilab.html
+++ b/Doc/Manual/Scilab.html
@@ -266,7 +266,7 @@ The following table lists the Scilab specific command line options in addition t
| -builderverbositylevel <level> |
-Set the build verbosity level to <level> (default 0) |
+Set the build verbosity level to <level> (default 0: off, 2: high) |
@@ -1856,9 +1856,9 @@ In this mode, the following SWIG options may be used to setup the build:
-- buildersources: to add sources to the build (several files must be separated by a comma)
-- buildercflags: to add flags to the builder compiler flags, for example to set library dependencies include paths
-- builderldflags: to add flags to the linker flags, for example to set library dependency names and paths
+- -buildersources: to add sources to the build (several files must be separated by a comma)
+- -buildercflags: to add flags to the builder compiler flags, for example to set library dependencies include paths
+- -builderldflags: to add flags to the linker flags, for example to set library dependency names and paths
diff --git a/Source/Modules/scilab.cxx b/Source/Modules/scilab.cxx
index 72580fd11..7c65b0624 100644
--- a/Source/Modules/scilab.cxx
+++ b/Source/Modules/scilab.cxx
@@ -20,12 +20,13 @@ static const char *usage = (char *) " \
Scilab options (available with -scilab)\n \
-builder - Generate a Scilab builder script\n \
-buildercflags - Add to the builder compiler flags\n \
+ -builderflagscript - Set the Scilab script to use by builder to configure the build flags\n \
-builderldflags - Add to the builder linker flags\n \
-buildersources - Add the (comma separated) files to the builder sources\n \
- -builderflagscript - Set the Scilab script to use by builder to configure the build flags\n \
- -builderverbositylevel - Set the builder verbosity level to (default 0: off, 2: most verbose)\n \
+ -builderverbositylevel - Set the builder verbosity level to (default 0: off, 2: high)\n \
+ -gatewayxml - Generate gateway xml with the given \n \
-nobuilder - Do not generate the Scilab builder script (default)\n \
- -gatewayxml - Generate gateway xml with the given \n\n";
+\n";
class SCILAB:public Language {