fix last patch fix

This commit is contained in:
Vítor Santos Costa 2014-03-09 00:21:19 +00:00
parent 6a75bc3a38
commit f163ca8ea0
2 changed files with 3 additions and 3 deletions

4
configure vendored
View File

@ -4552,11 +4552,11 @@ then
threads="yes" threads="yes"
fi fi
if test "$orparallelism" = copy || test "$orparallelism" = yes -a "$threads" = no if test "$orparallelism" = copy || test "$orparallelism" = yes -a "$threads" = no
then then
orparallelism="copy" orparallelism="copy"
use_malloc="no" use_malloc="no"
elif "$orparallelism" != no elif test "$orparallelism" != no
then then
tabling="no" tabling="no"
fi fi

View File

@ -318,7 +318,7 @@ if test "$orparallelism" = copy || test "$orparallelism" = yes -a "$threads" = n
then then
orparallelism="copy" orparallelism="copy"
use_malloc="no" use_malloc="no"
elif [ "$orparallelism" != no ] elif test "$orparallelism" != no
then then
tabling="no" tabling="no"
fi fi