diff options
author | Pádraig Brady <P@draigBrady.com> | 2013-11-27 16:35:24 +0000 |
---|---|---|
committer | Pádraig Brady <P@draigBrady.com> | 2013-11-27 16:38:49 +0000 |
commit | 1e16de1de4a9172cf9a13a469cfc8a58738ec8fa (patch) | |
tree | d0c06bc75fba12c7bc412f44e5da0ccd034f083e /src | |
parent | 7958a4a4fe234f9787daf178a60bc83449605dac (diff) | |
download | coreutils-1e16de1de4a9172cf9a13a469cfc8a58738ec8fa.tar.xz |
build: avoid build failure on non selinux systems
* src/selinux.c: This module introduced in commit v8.21-159-gd8e27ab
doesn't need to include <selinux/flask.h>. That header file
isn't catered for by gnulib, but is not needed as we're not
explicitly referencing any class IDs.
Prompted by the continuous integration build failure at:
http://hydra.nixos.org/build/6920020
Diffstat (limited to 'src')
-rw-r--r-- | src/selinux.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/selinux.c b/src/selinux.c index 2c3e97c67..405f5f61e 100644 --- a/src/selinux.c +++ b/src/selinux.c @@ -18,7 +18,6 @@ #include <config.h> #include <selinux/selinux.h> -#include <selinux/flask.h> #include <selinux/context.h> #include <sys/types.h> |