summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorChristophe Fergeau <cfergeau@redhat.com>2011-07-21 18:36:35 +0200
committerChristophe Fergeau <cfergeau@redhat.com>2011-07-22 10:24:30 +0200
commit4531c065bac65266a0aa5b723e83f4154e1792cb (patch)
tree259c32bc458cebdd3597f3e3c7fc5b75bb856843 /configure.ac
parentd89991165a7ed7b837c4605289270c198e46abe2 (diff)
downloadspice-4531c065bac65266a0aa5b723e83f4154e1792cb.tar.gz
spice-4531c065bac65266a0aa5b723e83f4154e1792cb.tar.xz
spice-4531c065bac65266a0aa5b723e83f4154e1792cb.zip
configure.ac: fix pyparsing check
2>&1 was typo'ed 2&>1 which caused an empty '1' file to be created when running this test.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index cb0ca990..feed8a18 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])