[Spice-devel] [PATCH 2/4] configure.ac: fix pyparsing check

Christophe Fergeau cfergeau at redhat.com
Thu Jul 21 09:49:03 PDT 2011


2>&1 was typo'ed 2&>1 which caused an empty '1' file to be created
when running this test.
---
 configure.ac |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/configure.ac b/configure.ac
index cb0ca99..feed8a1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -217,7 +217,7 @@ SPICE_REQUIRES+=" celt051 >= 0.5.1.1"
 
 if test ! -e client/generated_marshallers.cpp; then
 AC_MSG_CHECKING([for pyparsing python module])
-echo "import pyparsing" | python - >/dev/null 2&>1
+echo "import pyparsing" | python - >/dev/null 2>&1
 if test $? -ne 0 ; then
     AC_MSG_RESULT([not found])
     AC_MSG_ERROR([pyparsing python module is required to compile this package])
-- 
1.7.6



More information about the Spice-devel mailing list