Index: openacs-4/packages/acs-bootstrap-installer/installer/index.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-bootstrap-installer/installer/index.tcl,v diff -u -r1.30.2.3 -r1.30.2.4 --- openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 10 Sep 2015 08:21:15 -0000 1.30.2.3 +++ openacs-4/packages/acs-bootstrap-installer/installer/index.tcl 28 Oct 2016 20:31:56 -0000 1.30.2.4 @@ -177,8 +177,9 @@ set stacksize [ns_config "ns/threads" StackSize] -if { ![string is integer $stacksize] || - $stacksize < [expr {$acs_application(min_stack_size) * 1024}] } { +if { ![string is integer $stacksize] + || $stacksize < $acs_application(min_stack_size) * 1024 + } { append errors "
  • The configured AOLserver Stacksize is too small, missing, or a non-integer value. $acs_application(pretty_name) requires a StackSize parameter of at least ${acs_application(min_stack_size)}K.