mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-22 04:25:18 +00:00
m4: Fix missing with_acl variable
This commit fixes an acl missing variable. The virt-acl.m4 inside the macro directory does not contain the variable 'with_acl'. So, it is being set as an empty string "with_acl=''". This is causing a missing option during the configuration, even if you have acl libs installed. Signed-off-by: Julio Faracco <jcfaracco@gmail.com>
This commit is contained in:
parent
381e638d81
commit
424a21a9c8
@ -23,8 +23,10 @@ AC_DEFUN([LIBVIRT_CHECK_ACL], [
|
|||||||
|
|
||||||
ACL_CFLAGS=""
|
ACL_CFLAGS=""
|
||||||
ACL_LIBS=""
|
ACL_LIBS=""
|
||||||
|
with_acl=no
|
||||||
if test "x$ac_cv_header_sys_acl_h:x$with_linux" = "xyes:xyes"; then
|
if test "x$ac_cv_header_sys_acl_h:x$with_linux" = "xyes:xyes"; then
|
||||||
ACL_LIBS="-lacl"
|
ACL_LIBS="-lacl"
|
||||||
|
with_acl=yes
|
||||||
fi
|
fi
|
||||||
AC_SUBST([ACL_CFLAGS])
|
AC_SUBST([ACL_CFLAGS])
|
||||||
AC_SUBST([ACL_LIBS])
|
AC_SUBST([ACL_LIBS])
|
||||||
|
Loading…
x
Reference in New Issue
Block a user