From: "Daniel P. Berrange" <[email protected]>

For greater portability do not rely on the test binary having
a -a option
---
 configure.ac |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure.ac b/configure.ac
index 4092bef..805cd9b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -138,8 +138,8 @@ if test "$with_python" != "no" ; then
     fi
     if test "$PYTHON_VERSION" != ""
     then
-       if test -r $with_python/include/python$PYTHON_VERSION/Python.h -a \
-          -d $with_python/lib/python$PYTHON_VERSION/site-packages
+       if test -r $with_python/include/python$PYTHON_VERSION/Python.h && \
+          test -d $with_python/lib/python$PYTHON_VERSION/site-packages
        then
            PYTHON_INCLUDES=$with_python/include/python$PYTHON_VERSION
            PYTHON_SITE_PACKAGES=$libdir/python$PYTHON_VERSION/site-packages
-- 
1.7.6.4

--
libvir-list mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/libvir-list

Reply via email to