From: Ilya Maximets Date: Wed, 24 Feb 2016 15:04:57 +0000 (+0300) Subject: configure: Fix checking of six library for Python 3. X-Git-Url: http://git.cascardo.info/?p=cascardo%2Fovs.git;a=commitdiff_plain;h=1478295a219f24c2296eb887954afac537c3665f configure: Fix checking of six library for Python 3. Copied from python 2 checker but not corrected. Fixes: 8fb7d02686ed ("configure: Check for presence of Python 3.") Signed-off-by: Ilya Maximets Signed-off-by: Russell Bryant --- diff --git a/m4/openvswitch.m4 b/m4/openvswitch.m4 index fa85d3f30..b89925021 100644 --- a/m4/openvswitch.m4 +++ b/m4/openvswitch.m4 @@ -382,9 +382,9 @@ else: fi done done - if test $ovs_cv_python != no; then - if test -x "$ovs_cv_python" && ! "$ovs_cv_python" -c 'import six' >/dev/null 2>&1; then - ovs_cv_python=no + if test $ovs_cv_python3 != no; then + if test -x "$ovs_cv_python3" && ! "$ovs_cv_python3" -c 'import six' >/dev/null 2>&1; then + ovs_cv_python3=no AC_MSG_WARN([Missing Python six library.]) fi fi