summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJRGJON2016-10-07 17:16:34 +0530
committerGitHub2016-10-07 17:16:34 +0530
commit7fd456be8f757d869af89c6fbaf30919fef7ac5b (patch)
treeb28d322423f92a98c5f668a83528993b114fd3f3
parenta0d9443af147e949c1e6a01ac24749d12593ec5b (diff)
downloadFOSSEE-Optim-toolbox-development-7fd456be8f757d869af89c6fbaf30919fef7ac5b.tar.gz
FOSSEE-Optim-toolbox-development-7fd456be8f757d869af89c6fbaf30919fef7ac5b.tar.bz2
FOSSEE-Optim-toolbox-development-7fd456be8f757d869af89c6fbaf30919fef7ac5b.zip
Help documentation only for GUI mode
Help documentation fails to build in nwni mode as the documentation are based on Java features which are not available in the mode. rectified by making it available only for GUI mode.
-rw-r--r--builder.sce6
1 files changed, 5 insertions, 1 deletions
diff --git a/builder.sce b/builder.sce
index e1f4760..55df1b5 100644
--- a/builder.sce
+++ b/builder.sce
@@ -32,7 +32,11 @@ toolbox_dir = get_absolute_file_path("builder.sce");
tbx_builder_macros(toolbox_dir);
tbx_builder_gateway(toolbox_dir);
-tbx_builder_help(toolbox_dir);
+
+if getscilabmode()=="STD" then
+ tbx_builder_help(toolbox_dir);
+end
+
tbx_build_loader(TOOLBOX_NAME, toolbox_dir);
tbx_build_cleaner(TOOLBOX_NAME, toolbox_dir);