mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
Fix syntax error in configure.ac
Which will lead "./configure --with-audit=yes" breaks.
This commit is contained in:
parent
191238e5be
commit
ab8984e482
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user