From: Osier Yang Date: Mon, 28 Mar 2011 10:05:32 +0000 (+0800) Subject: Fix syntax error in configure.ac X-Git-Tag: v0.9.0~71 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ab8984e482283ae9b53210822b857380da69c912;p=thirdparty%2Flibvirt.git Fix syntax error in configure.ac Which will lead "./configure --with-audit=yes" breaks. --- diff --git a/configure.ac b/configure.ac index 9c0221c804..1a3d3b64e7 100644 --- a/configure.ac +++ b/configure.ac @@ -1051,7 +1051,7 @@ AUDIT_LIBS= if test "$with_audit" != "no" ; then old_cflags="$CFLAGS" old_libs="$LIBS" - if test "$with_audit" != "check" && "$with_audit" != "yes" ; then + if test "$with_audit" != "check" && test "$with_audit" != "yes" ; then AUDIT_CFLAGS="-I$with_audit/include" AUDIT_LIBS="-L$with_audit/lib" fi