mirror of
https://github.com/NixOS/nix
synced 2025-06-29 23:13:14 +02:00
Improve ACL clearing support (fixing FreeBSD build)
The problem was that f880469173
forgot
that the `#include <sys/xattr.h>` was guarded by an `#ifdef __linux__`.
However, the build failure was only on FreeBSD --- turns out other
platforms have this header too!
The fix therefore uses a new configure check so we properly clear ACLs
on more platforms.
This commit is contained in:
parent
a8fea5a54f
commit
a7115a47ef
3 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,6 @@
|
|||
#include <sys/xattr.h>
|
||||
#if HAVE_SYS_XATTR_H
|
||||
# include <sys/xattr.h>
|
||||
#endif
|
||||
|
||||
#include "posix-fs-canonicalise.hh"
|
||||
#include "file-system.hh"
|
||||
|
@ -76,7 +78,7 @@ static void canonicalisePathMetaData_(
|
|||
if (!(S_ISREG(st.st_mode) || S_ISDIR(st.st_mode) || S_ISLNK(st.st_mode)))
|
||||
throw Error("file '%1%' has an unsupported type", path);
|
||||
|
||||
#if __linux__
|
||||
#ifdef HAVE_SYS_XATTR_H
|
||||
/* Remove extended attributes / ACLs. */
|
||||
ssize_t eaSize = llistxattr(path.c_str(), nullptr, 0);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue