[libvirt] [PATCH libvirt-glib 12/15] Use test -d FOO && test -d BAR instead of test -d FOO -a -d BAR

Daniel P. Berrange berrange at redhat.com
Thu Dec 1 14:05:40 UTC 2011


From: "Daniel P. Berrange" <berrange at redhat.com>

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




More information about the libvir-list mailing list