diff options
author | Sylvestre Ledru <sylvestre.ledru@scilab.org> | 2010-05-04 18:12:44 +0200 |
---|---|---|
committer | Pierre MARECHAL <pierre.marechal@scilab.org> | 2010-05-05 15:02:49 +0200 |
commit | a06ec4ac9f39c755d6423edb4fb8eaac4efe5e53 (patch) | |
tree | debebb04478628f1ba4ea15cc9a0de55b90e0e9e /scilab | |
parent | 473206dd0b09f17e585333c9c52529c8147a48cf (diff) | |
download | scilab-a06ec4ac9f39c755d6423edb4fb8eaac4efe5e53.zip scilab-a06ec4ac9f39c755d6423edb4fb8eaac4efe5e53.tar.gz |
new argument added by GIWS version 1.1.0
Change-Id: I672e420d83d417093fd30171d2558930ffcf7452
Diffstat (limited to 'scilab')
75 files changed, 77 insertions, 77 deletions
diff --git a/scilab/Makefile.incl.am b/scilab/Makefile.incl.am index b0a9ee1..f5db225 100644 --- a/scilab/Makefile.incl.am +++ b/scilab/Makefile.incl.am | |||
@@ -90,7 +90,7 @@ giws: $(GIWS_WRAPPERS) | |||
90 | if test -n "$(GIWS_WRAPPERS)"; then \ | 90 | if test -n "$(GIWS_WRAPPERS)"; then \ |
91 | for file in $(GIWS_WRAPPERS) ; do \ | 91 | for file in $(GIWS_WRAPPERS) ; do \ |
92 | echo "GIWS process of $$file ..."; \ | 92 | echo "GIWS process of $$file ..."; \ |
93 | $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 93 | $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
94 | done; \ | 94 | done; \ |
95 | fi | 95 | fi |
96 | 96 | ||
diff --git a/scilab/libs/MALLOC/Makefile.in b/scilab/libs/MALLOC/Makefile.in index 4315b61..f7cd659 100644 --- a/scilab/libs/MALLOC/Makefile.in +++ b/scilab/libs/MALLOC/Makefile.in | |||
@@ -858,7 +858,7 @@ check-code: | |||
858 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 858 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
859 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 859 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
860 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 860 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
861 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 861 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
862 | @GIWS_TRUE@ done; \ | 862 | @GIWS_TRUE@ done; \ |
863 | @GIWS_TRUE@ fi | 863 | @GIWS_TRUE@ fi |
864 | 864 | ||
diff --git a/scilab/libs/doublylinkedlist/Makefile.in b/scilab/libs/doublylinkedlist/Makefile.in index 1ce8738..9aa533d 100644 --- a/scilab/libs/doublylinkedlist/Makefile.in +++ b/scilab/libs/doublylinkedlist/Makefile.in | |||
@@ -841,7 +841,7 @@ check-code: | |||
841 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 841 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
842 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 842 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
843 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 843 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
844 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 844 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
845 | @GIWS_TRUE@ done; \ | 845 | @GIWS_TRUE@ done; \ |
846 | @GIWS_TRUE@ fi | 846 | @GIWS_TRUE@ fi |
847 | 847 | ||
diff --git a/scilab/libs/dynamiclibrary/Makefile.in b/scilab/libs/dynamiclibrary/Makefile.in index c6c6205..f5d3922 100644 --- a/scilab/libs/dynamiclibrary/Makefile.in +++ b/scilab/libs/dynamiclibrary/Makefile.in | |||
@@ -843,7 +843,7 @@ check-code: | |||
843 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 843 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
844 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 844 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
845 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 845 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
846 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 846 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
847 | @GIWS_TRUE@ done; \ | 847 | @GIWS_TRUE@ done; \ |
848 | @GIWS_TRUE@ fi | 848 | @GIWS_TRUE@ fi |
849 | 849 | ||
diff --git a/scilab/libs/hashtable/Makefile.in b/scilab/libs/hashtable/Makefile.in index f8954cc..28ce07e 100644 --- a/scilab/libs/hashtable/Makefile.in +++ b/scilab/libs/hashtable/Makefile.in | |||
@@ -838,7 +838,7 @@ check-code: | |||
838 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 838 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
839 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 839 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
840 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 840 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
841 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 841 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
842 | @GIWS_TRUE@ done; \ | 842 | @GIWS_TRUE@ done; \ |
843 | @GIWS_TRUE@ fi | 843 | @GIWS_TRUE@ fi |
844 | 844 | ||
diff --git a/scilab/libs/libst/Makefile.in b/scilab/libs/libst/Makefile.in index 481345b..04985b2 100644 --- a/scilab/libs/libst/Makefile.in +++ b/scilab/libs/libst/Makefile.in | |||
@@ -800,7 +800,7 @@ check-code: | |||
800 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 800 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
801 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 801 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
802 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 802 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
803 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 803 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
804 | @GIWS_TRUE@ done; \ | 804 | @GIWS_TRUE@ done; \ |
805 | @GIWS_TRUE@ fi | 805 | @GIWS_TRUE@ fi |
806 | 806 | ||
diff --git a/scilab/modules/action_binding/Makefile.in b/scilab/modules/action_binding/Makefile.in index 70c8242..b840f07 100644 --- a/scilab/modules/action_binding/Makefile.in +++ b/scilab/modules/action_binding/Makefile.in | |||
@@ -977,7 +977,7 @@ check-code: | |||
977 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 977 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
978 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 978 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
979 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 979 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
980 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 980 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
981 | @GIWS_TRUE@ done; \ | 981 | @GIWS_TRUE@ done; \ |
982 | @GIWS_TRUE@ fi | 982 | @GIWS_TRUE@ fi |
983 | 983 | ||
diff --git a/scilab/modules/api_scilab/Makefile.in b/scilab/modules/api_scilab/Makefile.in index 866cad5..8d58cba 100644 --- a/scilab/modules/api_scilab/Makefile.in +++ b/scilab/modules/api_scilab/Makefile.in | |||
@@ -1033,7 +1033,7 @@ check-code: | |||
1033 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1033 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1034 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1034 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1035 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1035 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1036 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1036 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1037 | @GIWS_TRUE@ done; \ | 1037 | @GIWS_TRUE@ done; \ |
1038 | @GIWS_TRUE@ fi | 1038 | @GIWS_TRUE@ fi |
1039 | 1039 | ||
diff --git a/scilab/modules/arnoldi/Makefile.in b/scilab/modules/arnoldi/Makefile.in index 065d7b4..9ed0bd0 100644 --- a/scilab/modules/arnoldi/Makefile.in +++ b/scilab/modules/arnoldi/Makefile.in | |||
@@ -1205,7 +1205,7 @@ check-code: | |||
1205 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1205 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1206 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1206 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1207 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1207 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1208 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1208 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1209 | @GIWS_TRUE@ done; \ | 1209 | @GIWS_TRUE@ done; \ |
1210 | @GIWS_TRUE@ fi | 1210 | @GIWS_TRUE@ fi |
1211 | 1211 | ||
diff --git a/scilab/modules/atoms/Makefile.in b/scilab/modules/atoms/Makefile.in index d1640d3..847ab5c 100644 --- a/scilab/modules/atoms/Makefile.in +++ b/scilab/modules/atoms/Makefile.in | |||
@@ -712,7 +712,7 @@ check-code: | |||
712 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 712 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
713 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 713 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
714 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 714 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
715 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 715 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
716 | @GIWS_TRUE@ done; \ | 716 | @GIWS_TRUE@ done; \ |
717 | @GIWS_TRUE@ fi | 717 | @GIWS_TRUE@ fi |
718 | 718 | ||
diff --git a/scilab/modules/boolean/Makefile.in b/scilab/modules/boolean/Makefile.in index e624739..e7be86c 100644 --- a/scilab/modules/boolean/Makefile.in +++ b/scilab/modules/boolean/Makefile.in | |||
@@ -1010,7 +1010,7 @@ check-code: | |||
1010 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1010 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1011 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1011 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1012 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1012 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1013 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1013 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1014 | @GIWS_TRUE@ done; \ | 1014 | @GIWS_TRUE@ done; \ |
1015 | @GIWS_TRUE@ fi | 1015 | @GIWS_TRUE@ fi |
1016 | 1016 | ||
diff --git a/scilab/modules/cacsd/Makefile.in b/scilab/modules/cacsd/Makefile.in index d24e5d3..7d19b55 100644 --- a/scilab/modules/cacsd/Makefile.in +++ b/scilab/modules/cacsd/Makefile.in | |||
@@ -1873,7 +1873,7 @@ check-code: | |||
1873 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1873 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1874 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1874 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1875 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1875 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1876 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1876 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1877 | @GIWS_TRUE@ done; \ | 1877 | @GIWS_TRUE@ done; \ |
1878 | @GIWS_TRUE@ fi | 1878 | @GIWS_TRUE@ fi |
1879 | 1879 | ||
diff --git a/scilab/modules/call_scilab/Makefile.in b/scilab/modules/call_scilab/Makefile.in index 34bd80c..e2bd8da 100644 --- a/scilab/modules/call_scilab/Makefile.in +++ b/scilab/modules/call_scilab/Makefile.in | |||
@@ -1009,7 +1009,7 @@ check-code: | |||
1009 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1009 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1010 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1010 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1011 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1011 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1012 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1012 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1013 | @GIWS_TRUE@ done; \ | 1013 | @GIWS_TRUE@ done; \ |
1014 | @GIWS_TRUE@ fi | 1014 | @GIWS_TRUE@ fi |
1015 | 1015 | ||
diff --git a/scilab/modules/compatibility_functions/Makefile.in b/scilab/modules/compatibility_functions/Makefile.in index 587bc5f..95747a4 100644 --- a/scilab/modules/compatibility_functions/Makefile.in +++ b/scilab/modules/compatibility_functions/Makefile.in | |||
@@ -713,7 +713,7 @@ check-code: | |||
713 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 713 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
714 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 714 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
715 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 715 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
716 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 716 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
717 | @GIWS_TRUE@ done; \ | 717 | @GIWS_TRUE@ done; \ |
718 | @GIWS_TRUE@ fi | 718 | @GIWS_TRUE@ fi |
719 | 719 | ||
diff --git a/scilab/modules/completion/Makefile.in b/scilab/modules/completion/Makefile.in index 68a1f59..d14ce51 100644 --- a/scilab/modules/completion/Makefile.in +++ b/scilab/modules/completion/Makefile.in | |||
@@ -1154,7 +1154,7 @@ check-code: | |||
1154 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1154 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1155 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1155 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1156 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1156 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1157 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1157 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1158 | @GIWS_TRUE@ done; \ | 1158 | @GIWS_TRUE@ done; \ |
1159 | @GIWS_TRUE@ fi | 1159 | @GIWS_TRUE@ fi |
1160 | 1160 | ||
diff --git a/scilab/modules/console/Makefile.in b/scilab/modules/console/Makefile.in index 9eaea3c..c294836 100644 --- a/scilab/modules/console/Makefile.in +++ b/scilab/modules/console/Makefile.in | |||
@@ -1127,7 +1127,7 @@ check-code: | |||
1127 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1127 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1128 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1128 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1129 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1129 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1130 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1130 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1131 | @GIWS_TRUE@ done; \ | 1131 | @GIWS_TRUE@ done; \ |
1132 | @GIWS_TRUE@ fi | 1132 | @GIWS_TRUE@ fi |
1133 | 1133 | ||
diff --git a/scilab/modules/core/Makefile.in b/scilab/modules/core/Makefile.in index 2894262..234ae07 100644 --- a/scilab/modules/core/Makefile.in +++ b/scilab/modules/core/Makefile.in | |||
@@ -2887,7 +2887,7 @@ check-code: | |||
2887 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 2887 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
2888 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 2888 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
2889 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 2889 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
2890 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 2890 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
2891 | @GIWS_TRUE@ done; \ | 2891 | @GIWS_TRUE@ done; \ |
2892 | @GIWS_TRUE@ fi | 2892 | @GIWS_TRUE@ fi |
2893 | 2893 | ||
diff --git a/scilab/modules/data_structures/Makefile.in b/scilab/modules/data_structures/Makefile.in index 089c37d..f28828f 100644 --- a/scilab/modules/data_structures/Makefile.in +++ b/scilab/modules/data_structures/Makefile.in | |||
@@ -1179,7 +1179,7 @@ check-code: | |||
1179 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1179 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1180 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1180 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1181 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1181 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1182 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1182 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1183 | @GIWS_TRUE@ done; \ | 1183 | @GIWS_TRUE@ done; \ |
1184 | @GIWS_TRUE@ fi | 1184 | @GIWS_TRUE@ fi |
1185 | 1185 | ||
diff --git a/scilab/modules/demo_tools/Makefile.in b/scilab/modules/demo_tools/Makefile.in index 4913c33..6d6d140 100644 --- a/scilab/modules/demo_tools/Makefile.in +++ b/scilab/modules/demo_tools/Makefile.in | |||
@@ -737,7 +737,7 @@ check-code: | |||
737 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 737 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
738 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 738 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
739 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 739 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
740 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 740 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
741 | @GIWS_TRUE@ done; \ | 741 | @GIWS_TRUE@ done; \ |
742 | @GIWS_TRUE@ fi | 742 | @GIWS_TRUE@ fi |
743 | 743 | ||
diff --git a/scilab/modules/development_tools/Makefile.in b/scilab/modules/development_tools/Makefile.in index 12b130b..cbfe9e4 100644 --- a/scilab/modules/development_tools/Makefile.in +++ b/scilab/modules/development_tools/Makefile.in | |||
@@ -709,7 +709,7 @@ check-code: | |||
709 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 709 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
710 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 710 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
711 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 711 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
712 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 712 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
713 | @GIWS_TRUE@ done; \ | 713 | @GIWS_TRUE@ done; \ |
714 | @GIWS_TRUE@ fi | 714 | @GIWS_TRUE@ fi |
715 | 715 | ||
diff --git a/scilab/modules/differential_equations/Makefile.in b/scilab/modules/differential_equations/Makefile.in index e0510b6..9eac552 100644 --- a/scilab/modules/differential_equations/Makefile.in +++ b/scilab/modules/differential_equations/Makefile.in | |||
@@ -1556,7 +1556,7 @@ check-code: | |||
1556 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1556 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1557 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1557 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1558 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1558 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1559 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1559 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1560 | @GIWS_TRUE@ done; \ | 1560 | @GIWS_TRUE@ done; \ |
1561 | @GIWS_TRUE@ fi | 1561 | @GIWS_TRUE@ fi |
1562 | 1562 | ||
diff --git a/scilab/modules/double/Makefile.in b/scilab/modules/double/Makefile.in index b1b6c90..abf26a4 100644 --- a/scilab/modules/double/Makefile.in +++ b/scilab/modules/double/Makefile.in | |||
@@ -979,7 +979,7 @@ check-code: | |||
979 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 979 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
980 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 980 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
981 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 981 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
982 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 982 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
983 | @GIWS_TRUE@ done; \ | 983 | @GIWS_TRUE@ done; \ |
984 | @GIWS_TRUE@ fi | 984 | @GIWS_TRUE@ fi |
985 | 985 | ||
diff --git a/scilab/modules/dynamic_link/Makefile.in b/scilab/modules/dynamic_link/Makefile.in index e7121d2..338c62b 100644 --- a/scilab/modules/dynamic_link/Makefile.in +++ b/scilab/modules/dynamic_link/Makefile.in | |||
@@ -1150,7 +1150,7 @@ check-code: | |||
1150 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1150 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1151 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1151 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1152 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1152 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1153 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1153 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1154 | @GIWS_TRUE@ done; \ | 1154 | @GIWS_TRUE@ done; \ |
1155 | @GIWS_TRUE@ fi | 1155 | @GIWS_TRUE@ fi |
1156 | 1156 | ||
diff --git a/scilab/modules/elementary_functions/Makefile.in b/scilab/modules/elementary_functions/Makefile.in index c5d9671..5bed993 100644 --- a/scilab/modules/elementary_functions/Makefile.in +++ b/scilab/modules/elementary_functions/Makefile.in | |||
@@ -3115,7 +3115,7 @@ check-code: | |||
3115 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 3115 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
3116 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 3116 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
3117 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 3117 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
3118 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 3118 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
3119 | @GIWS_TRUE@ done; \ | 3119 | @GIWS_TRUE@ done; \ |
3120 | @GIWS_TRUE@ fi | 3120 | @GIWS_TRUE@ fi |
3121 | 3121 | ||
diff --git a/scilab/modules/fftw/Makefile.in b/scilab/modules/fftw/Makefile.in index e01dfa4..ac1ae77 100644 --- a/scilab/modules/fftw/Makefile.in +++ b/scilab/modules/fftw/Makefile.in | |||
@@ -1063,7 +1063,7 @@ check-code: | |||
1063 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1063 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1064 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1064 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1065 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1065 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1066 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1066 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1067 | @GIWS_TRUE@ done; \ | 1067 | @GIWS_TRUE@ done; \ |
1068 | @GIWS_TRUE@ fi | 1068 | @GIWS_TRUE@ fi |
1069 | 1069 | ||
diff --git a/scilab/modules/fileio/Makefile.in b/scilab/modules/fileio/Makefile.in index 1af4be4..803d74f 100644 --- a/scilab/modules/fileio/Makefile.in +++ b/scilab/modules/fileio/Makefile.in | |||
@@ -1806,7 +1806,7 @@ check-code: | |||
1806 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1806 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1807 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1807 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1808 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1808 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1809 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1809 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1810 | @GIWS_TRUE@ done; \ | 1810 | @GIWS_TRUE@ done; \ |
1811 | @GIWS_TRUE@ fi | 1811 | @GIWS_TRUE@ fi |
1812 | 1812 | ||
diff --git a/scilab/modules/functions/Makefile.in b/scilab/modules/functions/Makefile.in index e0c6659..5dac71e 100644 --- a/scilab/modules/functions/Makefile.in +++ b/scilab/modules/functions/Makefile.in | |||
@@ -1069,7 +1069,7 @@ check-code: | |||
1069 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1069 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1070 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1070 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1071 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1071 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1072 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1072 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1073 | @GIWS_TRUE@ done; \ | 1073 | @GIWS_TRUE@ done; \ |
1074 | @GIWS_TRUE@ fi | 1074 | @GIWS_TRUE@ fi |
1075 | 1075 | ||
diff --git a/scilab/modules/genetic_algorithms/Makefile.in b/scilab/modules/genetic_algorithms/Makefile.in index 26f12c5..70d69fc 100644 --- a/scilab/modules/genetic_algorithms/Makefile.in +++ b/scilab/modules/genetic_algorithms/Makefile.in | |||
@@ -714,7 +714,7 @@ check-code: | |||
714 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 714 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
715 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 715 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
716 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 716 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
717 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 717 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
718 | @GIWS_TRUE@ done; \ | 718 | @GIWS_TRUE@ done; \ |
719 | @GIWS_TRUE@ fi | 719 | @GIWS_TRUE@ fi |
720 | 720 | ||
diff --git a/scilab/modules/graph/Makefile.in b/scilab/modules/graph/Makefile.in index f6cd393..f1690d0 100644 --- a/scilab/modules/graph/Makefile.in +++ b/scilab/modules/graph/Makefile.in | |||
@@ -862,7 +862,7 @@ check-code: | |||
862 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 862 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
863 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 863 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
864 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 864 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
865 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 865 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
866 | @GIWS_TRUE@ done; \ | 866 | @GIWS_TRUE@ done; \ |
867 | @GIWS_TRUE@ fi | 867 | @GIWS_TRUE@ fi |
868 | 868 | ||
diff --git a/scilab/modules/graphic_export/Makefile.in b/scilab/modules/graphic_export/Makefile.in index c054527..029a4e3 100644 --- a/scilab/modules/graphic_export/Makefile.in +++ b/scilab/modules/graphic_export/Makefile.in | |||
@@ -1221,7 +1221,7 @@ check-code: | |||
1221 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1221 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1222 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1222 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1223 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1223 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1224 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1224 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1225 | @GIWS_TRUE@ done; \ | 1225 | @GIWS_TRUE@ done; \ |
1226 | @GIWS_TRUE@ fi | 1226 | @GIWS_TRUE@ fi |
1227 | 1227 | ||
diff --git a/scilab/modules/graphics/Makefile.in b/scilab/modules/graphics/Makefile.in index 8c9baa9..af0c092 100644 --- a/scilab/modules/graphics/Makefile.in +++ b/scilab/modules/graphics/Makefile.in | |||
@@ -4762,7 +4762,7 @@ check-code: | |||
4762 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 4762 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
4763 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 4763 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
4764 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 4764 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
4765 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 4765 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
4766 | @GIWS_TRUE@ done; \ | 4766 | @GIWS_TRUE@ done; \ |
4767 | @GIWS_TRUE@ fi | 4767 | @GIWS_TRUE@ fi |
4768 | 4768 | ||
diff --git a/scilab/modules/gui/Makefile.in b/scilab/modules/gui/Makefile.in index 72791ba..d04ad5a 100644 --- a/scilab/modules/gui/Makefile.in +++ b/scilab/modules/gui/Makefile.in | |||
@@ -2459,7 +2459,7 @@ check-code: | |||
2459 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 2459 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
2460 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 2460 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
2461 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 2461 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
2462 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 2462 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
2463 | @GIWS_TRUE@ done; \ | 2463 | @GIWS_TRUE@ done; \ |
2464 | @GIWS_TRUE@ fi | 2464 | @GIWS_TRUE@ fi |
2465 | 2465 | ||
diff --git a/scilab/modules/hdf5/Makefile.in b/scilab/modules/hdf5/Makefile.in index 4cfa1be..b1af2a5 100644 --- a/scilab/modules/hdf5/Makefile.in +++ b/scilab/modules/hdf5/Makefile.in | |||
@@ -1135,7 +1135,7 @@ check-code: | |||
1135 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1135 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1136 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1136 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1137 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1137 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1138 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1138 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1139 | @GIWS_TRUE@ done; \ | 1139 | @GIWS_TRUE@ done; \ |
1140 | @GIWS_TRUE@ fi | 1140 | @GIWS_TRUE@ fi |
1141 | 1141 | ||
diff --git a/scilab/modules/helptools/Makefile.in b/scilab/modules/helptools/Makefile.in index 579339f..c8f7920 100644 --- a/scilab/modules/helptools/Makefile.in +++ b/scilab/modules/helptools/Makefile.in | |||
@@ -1331,7 +1331,7 @@ check-code: | |||
1331 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1331 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1332 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1332 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1333 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1333 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1334 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1334 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1335 | @GIWS_TRUE@ done; \ | 1335 | @GIWS_TRUE@ done; \ |
1336 | @GIWS_TRUE@ fi | 1336 | @GIWS_TRUE@ fi |
1337 | 1337 | ||
diff --git a/scilab/modules/history_manager/Makefile.in b/scilab/modules/history_manager/Makefile.in index ee7065f..022b552 100644 --- a/scilab/modules/history_manager/Makefile.in +++ b/scilab/modules/history_manager/Makefile.in | |||
@@ -1230,7 +1230,7 @@ check-code: | |||
1230 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1230 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1231 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1231 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1232 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1232 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1233 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1233 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1234 | @GIWS_TRUE@ done; \ | 1234 | @GIWS_TRUE@ done; \ |
1235 | @GIWS_TRUE@ fi | 1235 | @GIWS_TRUE@ fi |
1236 | 1236 | ||
diff --git a/scilab/modules/integer/Makefile.in b/scilab/modules/integer/Makefile.in index 043f1d9..e767933 100644 --- a/scilab/modules/integer/Makefile.in +++ b/scilab/modules/integer/Makefile.in | |||
@@ -1604,7 +1604,7 @@ check-code: | |||
1604 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1604 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1605 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1605 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1606 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1606 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1607 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1607 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1608 | @GIWS_TRUE@ done; \ | 1608 | @GIWS_TRUE@ done; \ |
1609 | @GIWS_TRUE@ fi | 1609 | @GIWS_TRUE@ fi |
1610 | 1610 | ||
diff --git a/scilab/modules/interpolation/Makefile.in b/scilab/modules/interpolation/Makefile.in index 260b75c..a11d2f1 100644 --- a/scilab/modules/interpolation/Makefile.in +++ b/scilab/modules/interpolation/Makefile.in | |||
@@ -1084,7 +1084,7 @@ check-code: | |||
1084 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1084 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1085 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1085 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1086 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1086 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1087 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1087 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1088 | @GIWS_TRUE@ done; \ | 1088 | @GIWS_TRUE@ done; \ |
1089 | @GIWS_TRUE@ fi | 1089 | @GIWS_TRUE@ fi |
1090 | 1090 | ||
diff --git a/scilab/modules/intersci/Makefile.in b/scilab/modules/intersci/Makefile.in index 1c4fe5a..7463228 100644 --- a/scilab/modules/intersci/Makefile.in +++ b/scilab/modules/intersci/Makefile.in | |||
@@ -1158,7 +1158,7 @@ check-code: | |||
1158 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1158 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1159 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1159 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1160 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1160 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1161 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1161 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1162 | @GIWS_TRUE@ done; \ | 1162 | @GIWS_TRUE@ done; \ |
1163 | @GIWS_TRUE@ fi | 1163 | @GIWS_TRUE@ fi |
1164 | 1164 | ||
diff --git a/scilab/modules/io/Makefile.in b/scilab/modules/io/Makefile.in index d56e04e..7d4e58f 100644 --- a/scilab/modules/io/Makefile.in +++ b/scilab/modules/io/Makefile.in | |||
@@ -1187,7 +1187,7 @@ check-code: | |||
1187 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1187 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1188 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1188 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1189 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1189 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1190 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1190 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1191 | @GIWS_TRUE@ done; \ | 1191 | @GIWS_TRUE@ done; \ |
1192 | @GIWS_TRUE@ fi | 1192 | @GIWS_TRUE@ fi |
1193 | 1193 | ||
diff --git a/scilab/modules/javasci/Makefile.in b/scilab/modules/javasci/Makefile.in index 6409d24..c86a023 100644 --- a/scilab/modules/javasci/Makefile.in +++ b/scilab/modules/javasci/Makefile.in | |||
@@ -1092,7 +1092,7 @@ uninstall-am: uninstall-libjavasci_la_etcDATA \ | |||
1092 | @GIWS_TRUE@@JAVASCI_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1092 | @GIWS_TRUE@@JAVASCI_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1093 | @GIWS_TRUE@@JAVASCI_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1093 | @GIWS_TRUE@@JAVASCI_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1094 | @GIWS_TRUE@@JAVASCI_TRUE@ echo "GIWS process of $$file ..."; \ | 1094 | @GIWS_TRUE@@JAVASCI_TRUE@ echo "GIWS process of $$file ..."; \ |
1095 | @GIWS_TRUE@@JAVASCI_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1095 | @GIWS_TRUE@@JAVASCI_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1096 | @GIWS_TRUE@@JAVASCI_TRUE@ done; \ | 1096 | @GIWS_TRUE@@JAVASCI_TRUE@ done; \ |
1097 | @GIWS_TRUE@@JAVASCI_TRUE@ fi | 1097 | @GIWS_TRUE@@JAVASCI_TRUE@ fi |
1098 | 1098 | ||
diff --git a/scilab/modules/jvm/Makefile.in b/scilab/modules/jvm/Makefile.in index 546c2b3..c5f05cb 100644 --- a/scilab/modules/jvm/Makefile.in +++ b/scilab/modules/jvm/Makefile.in | |||
@@ -1240,7 +1240,7 @@ check-code: | |||
1240 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1240 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1241 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1241 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1242 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1242 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1243 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1243 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1244 | @GIWS_TRUE@ done; \ | 1244 | @GIWS_TRUE@ done; \ |
1245 | @GIWS_TRUE@ fi | 1245 | @GIWS_TRUE@ fi |
1246 | 1246 | ||
diff --git a/scilab/modules/linear_algebra/Makefile.in b/scilab/modules/linear_algebra/Makefile.in index de37c71..d0f9387 100644 --- a/scilab/modules/linear_algebra/Makefile.in +++ b/scilab/modules/linear_algebra/Makefile.in | |||
@@ -1407,7 +1407,7 @@ check-code: | |||
1407 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1407 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1408 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1408 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1409 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1409 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1410 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1410 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1411 | @GIWS_TRUE@ done; \ | 1411 | @GIWS_TRUE@ done; \ |
1412 | @GIWS_TRUE@ fi | 1412 | @GIWS_TRUE@ fi |
1413 | 1413 | ||
diff --git a/scilab/modules/localization/Makefile.in b/scilab/modules/localization/Makefile.in index a5e5360..f44ac97 100644 --- a/scilab/modules/localization/Makefile.in +++ b/scilab/modules/localization/Makefile.in | |||
@@ -1084,7 +1084,7 @@ check-code: | |||
1084 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1084 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1085 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1085 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1086 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1086 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1087 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1087 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1088 | @GIWS_TRUE@ done; \ | 1088 | @GIWS_TRUE@ done; \ |
1089 | @GIWS_TRUE@ fi | 1089 | @GIWS_TRUE@ fi |
1090 | 1090 | ||
diff --git a/scilab/modules/m2sci/Makefile.in b/scilab/modules/m2sci/Makefile.in index 14ed174..f68b65e 100644 --- a/scilab/modules/m2sci/Makefile.in +++ b/scilab/modules/m2sci/Makefile.in | |||
@@ -709,7 +709,7 @@ check-code: | |||
709 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 709 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
710 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 710 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
711 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 711 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
712 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 712 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
713 | @GIWS_TRUE@ done; \ | 713 | @GIWS_TRUE@ done; \ |
714 | @GIWS_TRUE@ fi | 714 | @GIWS_TRUE@ fi |
715 | 715 | ||
diff --git a/scilab/modules/maple2scilab/Makefile.in b/scilab/modules/maple2scilab/Makefile.in index 8dd5649..d2ac993 100644 --- a/scilab/modules/maple2scilab/Makefile.in +++ b/scilab/modules/maple2scilab/Makefile.in | |||
@@ -707,7 +707,7 @@ check-code: | |||
707 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 707 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
708 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 708 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
709 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 709 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
710 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 710 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
711 | @GIWS_TRUE@ done; \ | 711 | @GIWS_TRUE@ done; \ |
712 | @GIWS_TRUE@ fi | 712 | @GIWS_TRUE@ fi |
713 | 713 | ||
diff --git a/scilab/modules/matio/Makefile.in b/scilab/modules/matio/Makefile.in index ed6f6ae..b62c612 100644 --- a/scilab/modules/matio/Makefile.in +++ b/scilab/modules/matio/Makefile.in | |||
@@ -1164,7 +1164,7 @@ check-code: | |||
1164 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1164 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1165 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1165 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1166 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1166 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1167 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1167 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1168 | @GIWS_TRUE@ done; \ | 1168 | @GIWS_TRUE@ done; \ |
1169 | @GIWS_TRUE@ fi | 1169 | @GIWS_TRUE@ fi |
1170 | 1170 | ||
diff --git a/scilab/modules/mexlib/Makefile.in b/scilab/modules/mexlib/Makefile.in index be94ed5..bb39d45 100644 --- a/scilab/modules/mexlib/Makefile.in +++ b/scilab/modules/mexlib/Makefile.in | |||
@@ -976,7 +976,7 @@ check-code: | |||
976 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 976 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
977 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 977 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
978 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 978 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
979 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 979 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
980 | @GIWS_TRUE@ done; \ | 980 | @GIWS_TRUE@ done; \ |
981 | @GIWS_TRUE@ fi | 981 | @GIWS_TRUE@ fi |
982 | 982 | ||
diff --git a/scilab/modules/optimization/Makefile.in b/scilab/modules/optimization/Makefile.in index 3fa64c3..6da5911 100644 --- a/scilab/modules/optimization/Makefile.in +++ b/scilab/modules/optimization/Makefile.in | |||
@@ -1459,7 +1459,7 @@ check-code: | |||
1459 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1459 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1460 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1460 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1461 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1461 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1462 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1462 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1463 | @GIWS_TRUE@ done; \ | 1463 | @GIWS_TRUE@ done; \ |
1464 | @GIWS_TRUE@ fi | 1464 | @GIWS_TRUE@ fi |
1465 | 1465 | ||
diff --git a/scilab/modules/output_stream/Makefile.in b/scilab/modules/output_stream/Makefile.in index bf6471e..73830bd 100644 --- a/scilab/modules/output_stream/Makefile.in +++ b/scilab/modules/output_stream/Makefile.in | |||
@@ -1334,7 +1334,7 @@ check-code: | |||
1334 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1334 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1335 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1335 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1336 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1336 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1337 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1337 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1338 | @GIWS_TRUE@ done; \ | 1338 | @GIWS_TRUE@ done; \ |
1339 | @GIWS_TRUE@ fi | 1339 | @GIWS_TRUE@ fi |
1340 | 1340 | ||
diff --git a/scilab/modules/overloading/Makefile.in b/scilab/modules/overloading/Makefile.in index 5939376..2b8959c 100644 --- a/scilab/modules/overloading/Makefile.in +++ b/scilab/modules/overloading/Makefile.in | |||
@@ -709,7 +709,7 @@ check-code: | |||
709 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 709 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
710 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 710 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
711 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 711 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
712 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 712 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
713 | @GIWS_TRUE@ done; \ | 713 | @GIWS_TRUE@ done; \ |
714 | @GIWS_TRUE@ fi | 714 | @GIWS_TRUE@ fi |
715 | 715 | ||
diff --git a/scilab/modules/parameters/Makefile.in b/scilab/modules/parameters/Makefile.in index 7cf48f5..b409381 100644 --- a/scilab/modules/parameters/Makefile.in +++ b/scilab/modules/parameters/Makefile.in | |||
@@ -882,7 +882,7 @@ check-code: | |||
882 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 882 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
883 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 883 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
884 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 884 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
885 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 885 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
886 | @GIWS_TRUE@ done; \ | 886 | @GIWS_TRUE@ done; \ |
887 | @GIWS_TRUE@ fi | 887 | @GIWS_TRUE@ fi |
888 | 888 | ||
diff --git a/scilab/modules/polynomials/Makefile.in b/scilab/modules/polynomials/Makefile.in index 78be85a..2477821 100644 --- a/scilab/modules/polynomials/Makefile.in +++ b/scilab/modules/polynomials/Makefile.in | |||
@@ -1413,7 +1413,7 @@ check-code: | |||
1413 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1413 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1414 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1414 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1415 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1415 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1416 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1416 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1417 | @GIWS_TRUE@ done; \ | 1417 | @GIWS_TRUE@ done; \ |
1418 | @GIWS_TRUE@ fi | 1418 | @GIWS_TRUE@ fi |
1419 | 1419 | ||
diff --git a/scilab/modules/pvm/Makefile.in b/scilab/modules/pvm/Makefile.in index 8c926bc..c34faf4 100644 --- a/scilab/modules/pvm/Makefile.in +++ b/scilab/modules/pvm/Makefile.in | |||
@@ -1447,7 +1447,7 @@ uninstall-am: uninstall-libscipvm_la_etcDATA \ | |||
1447 | @GIWS_TRUE@@PVM_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1447 | @GIWS_TRUE@@PVM_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1448 | @GIWS_TRUE@@PVM_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1448 | @GIWS_TRUE@@PVM_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1449 | @GIWS_TRUE@@PVM_TRUE@ echo "GIWS process of $$file ..."; \ | 1449 | @GIWS_TRUE@@PVM_TRUE@ echo "GIWS process of $$file ..."; \ |
1450 | @GIWS_TRUE@@PVM_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1450 | @GIWS_TRUE@@PVM_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1451 | @GIWS_TRUE@@PVM_TRUE@ done; \ | 1451 | @GIWS_TRUE@@PVM_TRUE@ done; \ |
1452 | @GIWS_TRUE@@PVM_TRUE@ fi | 1452 | @GIWS_TRUE@@PVM_TRUE@ fi |
1453 | 1453 | ||
@@ -1632,7 +1632,7 @@ uninstall-am: uninstall-libscipvm_la_etcDATA \ | |||
1632 | @GIWS_TRUE@@PVM_FALSE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1632 | @GIWS_TRUE@@PVM_FALSE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1633 | @GIWS_TRUE@@PVM_FALSE@ for file in $(GIWS_WRAPPERS) ; do \ | 1633 | @GIWS_TRUE@@PVM_FALSE@ for file in $(GIWS_WRAPPERS) ; do \ |
1634 | @GIWS_TRUE@@PVM_FALSE@ echo "GIWS process of $$file ..."; \ | 1634 | @GIWS_TRUE@@PVM_FALSE@ echo "GIWS process of $$file ..."; \ |
1635 | @GIWS_TRUE@@PVM_FALSE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1635 | @GIWS_TRUE@@PVM_FALSE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1636 | @GIWS_TRUE@@PVM_FALSE@ done; \ | 1636 | @GIWS_TRUE@@PVM_FALSE@ done; \ |
1637 | @GIWS_TRUE@@PVM_FALSE@ fi | 1637 | @GIWS_TRUE@@PVM_FALSE@ fi |
1638 | 1638 | ||
diff --git a/scilab/modules/randlib/Makefile.in b/scilab/modules/randlib/Makefile.in index 727361e..8c24168 100644 --- a/scilab/modules/randlib/Makefile.in +++ b/scilab/modules/randlib/Makefile.in | |||
@@ -1116,7 +1116,7 @@ check-code: | |||
1116 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1116 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1117 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1117 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1118 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1118 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1119 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1119 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1120 | @GIWS_TRUE@ done; \ | 1120 | @GIWS_TRUE@ done; \ |
1121 | @GIWS_TRUE@ fi | 1121 | @GIWS_TRUE@ fi |
1122 | 1122 | ||
diff --git a/scilab/modules/renderer/Makefile.in b/scilab/modules/renderer/Makefile.in index a045f98..73f024c 100644 --- a/scilab/modules/renderer/Makefile.in +++ b/scilab/modules/renderer/Makefile.in | |||
@@ -3527,7 +3527,7 @@ check-code: | |||
3527 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 3527 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
3528 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 3528 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
3529 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 3529 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
3530 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 3530 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
3531 | @GIWS_TRUE@ done; \ | 3531 | @GIWS_TRUE@ done; \ |
3532 | @GIWS_TRUE@ fi | 3532 | @GIWS_TRUE@ fi |
3533 | 3533 | ||
diff --git a/scilab/modules/scicos/Makefile.in b/scilab/modules/scicos/Makefile.in index a1d5e5f..ef2adb0 100644 --- a/scilab/modules/scicos/Makefile.in +++ b/scilab/modules/scicos/Makefile.in | |||
@@ -2259,7 +2259,7 @@ check-code: | |||
2259 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 2259 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
2260 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 2260 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
2261 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 2261 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
2262 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 2262 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
2263 | @GIWS_TRUE@ done; \ | 2263 | @GIWS_TRUE@ done; \ |
2264 | @GIWS_TRUE@ fi | 2264 | @GIWS_TRUE@ fi |
2265 | 2265 | ||
diff --git a/scilab/modules/scicos_blocks/Makefile.in b/scilab/modules/scicos_blocks/Makefile.in index e6becf0..7b54c69 100644 --- a/scilab/modules/scicos_blocks/Makefile.in +++ b/scilab/modules/scicos_blocks/Makefile.in | |||
@@ -4892,7 +4892,7 @@ check-code: | |||
4892 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 4892 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
4893 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 4893 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
4894 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 4894 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
4895 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 4895 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
4896 | @GIWS_TRUE@ done; \ | 4896 | @GIWS_TRUE@ done; \ |
4897 | @GIWS_TRUE@ fi | 4897 | @GIWS_TRUE@ fi |
4898 | 4898 | ||
diff --git a/scilab/modules/shell/Makefile.in b/scilab/modules/shell/Makefile.in index 40c9fc0..57b951a 100644 --- a/scilab/modules/shell/Makefile.in +++ b/scilab/modules/shell/Makefile.in | |||
@@ -1146,7 +1146,7 @@ check-code: | |||
1146 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1146 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1147 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1147 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1148 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1148 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1149 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1149 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1150 | @GIWS_TRUE@ done; \ | 1150 | @GIWS_TRUE@ done; \ |
1151 | @GIWS_TRUE@ fi | 1151 | @GIWS_TRUE@ fi |
1152 | 1152 | ||
diff --git a/scilab/modules/signal_processing/Makefile.in b/scilab/modules/signal_processing/Makefile.in index 6c8cb9c..0bfe03f 100644 --- a/scilab/modules/signal_processing/Makefile.in +++ b/scilab/modules/signal_processing/Makefile.in | |||
@@ -1340,7 +1340,7 @@ check-code: | |||
1340 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1340 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1341 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1341 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1342 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1342 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1343 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1343 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1344 | @GIWS_TRUE@ done; \ | 1344 | @GIWS_TRUE@ done; \ |
1345 | @GIWS_TRUE@ fi | 1345 | @GIWS_TRUE@ fi |
1346 | 1346 | ||
diff --git a/scilab/modules/simulated_annealing/Makefile.in b/scilab/modules/simulated_annealing/Makefile.in index cb5979b..02c46b0 100644 --- a/scilab/modules/simulated_annealing/Makefile.in +++ b/scilab/modules/simulated_annealing/Makefile.in | |||
@@ -714,7 +714,7 @@ check-code: | |||
714 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 714 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
715 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 715 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
716 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 716 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
717 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 717 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
718 | @GIWS_TRUE@ done; \ | 718 | @GIWS_TRUE@ done; \ |
719 | @GIWS_TRUE@ fi | 719 | @GIWS_TRUE@ fi |
720 | 720 | ||
diff --git a/scilab/modules/sound/Makefile.in b/scilab/modules/sound/Makefile.in index c020b96..2efd95a 100644 --- a/scilab/modules/sound/Makefile.in +++ b/scilab/modules/sound/Makefile.in | |||
@@ -928,7 +928,7 @@ check-code: | |||
928 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 928 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
929 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 929 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
930 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 930 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
931 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 931 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
932 | @GIWS_TRUE@ done; \ | 932 | @GIWS_TRUE@ done; \ |
933 | @GIWS_TRUE@ fi | 933 | @GIWS_TRUE@ fi |
934 | 934 | ||
diff --git a/scilab/modules/sparse/Makefile.in b/scilab/modules/sparse/Makefile.in index 59fd942..539bfea 100644 --- a/scilab/modules/sparse/Makefile.in +++ b/scilab/modules/sparse/Makefile.in | |||
@@ -1723,7 +1723,7 @@ check-code: | |||
1723 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1723 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1724 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1724 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1725 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1725 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1726 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1726 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1727 | @GIWS_TRUE@ done; \ | 1727 | @GIWS_TRUE@ done; \ |
1728 | @GIWS_TRUE@ fi | 1728 | @GIWS_TRUE@ fi |
1729 | 1729 | ||
diff --git a/scilab/modules/special_functions/Makefile.in b/scilab/modules/special_functions/Makefile.in index 098a792..2478387 100644 --- a/scilab/modules/special_functions/Makefile.in +++ b/scilab/modules/special_functions/Makefile.in | |||
@@ -1125,7 +1125,7 @@ check-code: | |||
1125 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1125 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1126 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1126 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1127 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1127 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1128 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1128 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1129 | @GIWS_TRUE@ done; \ | 1129 | @GIWS_TRUE@ done; \ |
1130 | @GIWS_TRUE@ fi | 1130 | @GIWS_TRUE@ fi |
1131 | 1131 | ||
diff --git a/scilab/modules/spreadsheet/Makefile.in b/scilab/modules/spreadsheet/Makefile.in index dad4b41..6de994b 100644 --- a/scilab/modules/spreadsheet/Makefile.in +++ b/scilab/modules/spreadsheet/Makefile.in | |||
@@ -1013,7 +1013,7 @@ check-code: | |||
1013 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1013 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1014 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1014 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1015 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1015 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1016 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1016 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1017 | @GIWS_TRUE@ done; \ | 1017 | @GIWS_TRUE@ done; \ |
1018 | @GIWS_TRUE@ fi | 1018 | @GIWS_TRUE@ fi |
1019 | 1019 | ||
diff --git a/scilab/modules/statistics/Makefile.in b/scilab/modules/statistics/Makefile.in index 5516bdd..36defe5 100644 --- a/scilab/modules/statistics/Makefile.in +++ b/scilab/modules/statistics/Makefile.in | |||
@@ -1316,7 +1316,7 @@ check-code: | |||
1316 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1316 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1317 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1317 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1318 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1318 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1319 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1319 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1320 | @GIWS_TRUE@ done; \ | 1320 | @GIWS_TRUE@ done; \ |
1321 | @GIWS_TRUE@ fi | 1321 | @GIWS_TRUE@ fi |
1322 | 1322 | ||
diff --git a/scilab/modules/string/Makefile.in b/scilab/modules/string/Makefile.in index fc85f25..4a28a51 100644 --- a/scilab/modules/string/Makefile.in +++ b/scilab/modules/string/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # Makefile.in generated by automake 1.11 from Makefile.am. | 1 | # Makefile.in generated by automake 1.11.1 from Makefile.am. |
2 | # @configure_input@ | 2 | # @configure_input@ |
3 | 3 | ||
4 | # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, | 4 | # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, |
@@ -1452,7 +1452,7 @@ check-code: | |||
1452 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1452 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1453 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1453 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1454 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1454 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1455 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1455 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1456 | @GIWS_TRUE@ done; \ | 1456 | @GIWS_TRUE@ done; \ |
1457 | @GIWS_TRUE@ fi | 1457 | @GIWS_TRUE@ fi |
1458 | 1458 | ||
diff --git a/scilab/modules/symbolic/Makefile.in b/scilab/modules/symbolic/Makefile.in index 4bbe98c..233af64 100644 --- a/scilab/modules/symbolic/Makefile.in +++ b/scilab/modules/symbolic/Makefile.in | |||
@@ -984,7 +984,7 @@ check-code: | |||
984 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 984 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
985 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 985 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
986 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 986 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
987 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 987 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
988 | @GIWS_TRUE@ done; \ | 988 | @GIWS_TRUE@ done; \ |
989 | @GIWS_TRUE@ fi | 989 | @GIWS_TRUE@ fi |
990 | 990 | ||
diff --git a/scilab/modules/tclsci/Makefile.in b/scilab/modules/tclsci/Makefile.in index 8ad8d3d..a39ed02 100644 --- a/scilab/modules/tclsci/Makefile.in +++ b/scilab/modules/tclsci/Makefile.in | |||
@@ -1406,7 +1406,7 @@ check-code: | |||
1406 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1406 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1407 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1407 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1408 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1408 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1409 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1409 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1410 | @GIWS_TRUE@ done; \ | 1410 | @GIWS_TRUE@ done; \ |
1411 | @GIWS_TRUE@ fi | 1411 | @GIWS_TRUE@ fi |
1412 | 1412 | ||
diff --git a/scilab/modules/texmacs/Makefile.in b/scilab/modules/texmacs/Makefile.in index 3b01202..9e621f5 100644 --- a/scilab/modules/texmacs/Makefile.in +++ b/scilab/modules/texmacs/Makefile.in | |||
@@ -710,7 +710,7 @@ check-code: | |||
710 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 710 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
711 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 711 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
712 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 712 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
713 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 713 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
714 | @GIWS_TRUE@ done; \ | 714 | @GIWS_TRUE@ done; \ |
715 | @GIWS_TRUE@ fi | 715 | @GIWS_TRUE@ fi |
716 | 716 | ||
diff --git a/scilab/modules/time/Makefile.in b/scilab/modules/time/Makefile.in index 2be5acd..c537dc2 100644 --- a/scilab/modules/time/Makefile.in +++ b/scilab/modules/time/Makefile.in | |||
@@ -1028,7 +1028,7 @@ check-code: | |||
1028 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1028 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1029 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1029 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1030 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1030 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1031 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1031 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1032 | @GIWS_TRUE@ done; \ | 1032 | @GIWS_TRUE@ done; \ |
1033 | @GIWS_TRUE@ fi | 1033 | @GIWS_TRUE@ fi |
1034 | 1034 | ||
diff --git a/scilab/modules/types/Makefile.in b/scilab/modules/types/Makefile.in index 5fcaf46..b658d25 100644 --- a/scilab/modules/types/Makefile.in +++ b/scilab/modules/types/Makefile.in | |||
@@ -862,7 +862,7 @@ check-code: | |||
862 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 862 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
863 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 863 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
864 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 864 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
865 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 865 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
866 | @GIWS_TRUE@ done; \ | 866 | @GIWS_TRUE@ done; \ |
867 | @GIWS_TRUE@ fi | 867 | @GIWS_TRUE@ fi |
868 | 868 | ||
diff --git a/scilab/modules/umfpack/Makefile.in b/scilab/modules/umfpack/Makefile.in index 1aa530d..987c9d7 100644 --- a/scilab/modules/umfpack/Makefile.in +++ b/scilab/modules/umfpack/Makefile.in | |||
@@ -1107,7 +1107,7 @@ check-code: | |||
1107 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1107 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1108 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1108 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1109 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1109 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1110 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1110 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1111 | @GIWS_TRUE@ done; \ | 1111 | @GIWS_TRUE@ done; \ |
1112 | @GIWS_TRUE@ fi | 1112 | @GIWS_TRUE@ fi |
1113 | 1113 | ||
diff --git a/scilab/modules/windows_tools/Makefile.in b/scilab/modules/windows_tools/Makefile.in index 9961ee4..c686bde 100644 --- a/scilab/modules/windows_tools/Makefile.in +++ b/scilab/modules/windows_tools/Makefile.in | |||
@@ -911,7 +911,7 @@ check-code: | |||
911 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 911 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
912 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 912 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
913 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 913 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
914 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 914 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
915 | @GIWS_TRUE@ done; \ | 915 | @GIWS_TRUE@ done; \ |
916 | @GIWS_TRUE@ fi | 916 | @GIWS_TRUE@ fi |
917 | 917 | ||
diff --git a/scilab/modules/xcos/Makefile.in b/scilab/modules/xcos/Makefile.in index a567ce2..05d8e4e 100644 --- a/scilab/modules/xcos/Makefile.in +++ b/scilab/modules/xcos/Makefile.in | |||
@@ -1436,7 +1436,7 @@ check-code: | |||
1436 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1436 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1437 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1437 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1438 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1438 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1439 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1439 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1440 | @GIWS_TRUE@ done; \ | 1440 | @GIWS_TRUE@ done; \ |
1441 | @GIWS_TRUE@ fi | 1441 | @GIWS_TRUE@ fi |
1442 | 1442 | ||
diff --git a/scilab/modules/xpad/Makefile.in b/scilab/modules/xpad/Makefile.in index c40a6c1..574013a 100644 --- a/scilab/modules/xpad/Makefile.in +++ b/scilab/modules/xpad/Makefile.in | |||
@@ -1073,7 +1073,7 @@ check-code: | |||
1073 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ | 1073 | @GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \ |
1074 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ | 1074 | @GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \ |
1075 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ | 1075 | @GIWS_TRUE@ echo "GIWS process of $$file ..."; \ |
1076 | @GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ | 1076 | @GIWS_TRUE@ $(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \ |
1077 | @GIWS_TRUE@ done; \ | 1077 | @GIWS_TRUE@ done; \ |
1078 | @GIWS_TRUE@ fi | 1078 | @GIWS_TRUE@ fi |
1079 | 1079 | ||