bug-gnulib
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: file-has-acl: fix module description


From: Bruno Haible
Subject: Re: file-has-acl: fix module description
Date: Sun, 22 Mar 2020 13:09:28 +0100
User-agent: KMail/5.1.3 (Linux/4.4.0-174-generic; KDE/5.18.0; x86_64; ; )

> 1) The condition  [test $gl_need_lib_has_acl]  could give a shell syntax 
> error.
> It should be      [test -n "$gl_need_lib_has_acl"].

Likewise in m4/acl.m4.


2020-03-22  Bruno Haible  <address@hidden>

        acl-permissions: Improve autoconf macro.
        * m4/acl.m4 (gl_FUNC_ACL): Test the value of gl_need_lib_has_acl
        more reliably.

diff --git a/m4/acl.m4 b/m4/acl.m4
index e459451..a3dcf93 100644
--- a/m4/acl.m4
+++ b/m4/acl.m4
@@ -1,5 +1,5 @@
 # acl.m4 - check for access control list (ACL) primitives
-# serial 23
+# serial 24
 
 # Copyright (C) 2002, 2004-2020 Free Software Foundation, Inc.
 # This file is free software; the Free Software Foundation
@@ -139,7 +139,7 @@ int type = ACL_TYPE_EXTENDED;]])],
       AC_MSG_WARN([AC_PACKAGE_NAME will be built without ACL support.])
     fi
   fi
-  test $gl_need_lib_has_acl && LIB_HAS_ACL=$LIB_ACL
+  test -n "$gl_need_lib_has_acl" && LIB_HAS_ACL=$LIB_ACL
   AC_SUBST([LIB_ACL])
   AC_DEFINE_UNQUOTED([USE_ACL], [$use_acl],
     [Define to nonzero if you want access control list support.])




reply via email to

[Prev in Thread] Current Thread [Next in Thread]