[commtech] Use param variable for matrice calc.

Matrice calculation library should not take parameter value 16 hardcoded
but use the value of the param variable.
This commit is contained in:
Thomas Preud'homme 2011-01-25 17:27:07 +01:00
parent aef40ff651
commit b1316fb8a4
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ function_run () {
case $typeProd in
"none" ) optTypeProd="" ;;
"line" ) optTypeProd="-c lib/${calcDir}/libcalc_line.so ${argTypeProd}" ;;
"matrice" ) optTypeProd="-c lib/${calcDir}/libcalc_mat.so 16" ;;
"matrice" ) optTypeProd="-c lib/${calcDir}/libcalc_mat.so ${argTypeProd}" ;;
"useless_loop" ) optTypeProd="-c lib/${calcDir}/libcalc_useless_loop.so ${argTypeProd}" ;;
* ) exit 1 ;;
esac