libsemanage: fix build w/gcc7
This commit is contained in:
parent
ba816ee087
commit
591fd5ee9b
1 changed files with 7 additions and 1 deletions
|
@ -13,7 +13,13 @@ stdenv.mkDerivation rec {
|
|||
nativeBuildInputs = [ bison flex ];
|
||||
buildInputs = [ libsepol libselinux ustr bzip2 libaudit ];
|
||||
|
||||
NIX_CFLAGS_COMPILE = "-fstack-protector-all -std=gnu89";
|
||||
NIX_CFLAGS_COMPILE = [
|
||||
"-fstack-protector-all"
|
||||
"-std=gnu89"
|
||||
# these were added to fix build with gcc7. review on update
|
||||
"-Wno-error=format-truncation"
|
||||
"-Wno-error=implicit-fallthrough"
|
||||
];
|
||||
|
||||
preBuild = ''
|
||||
makeFlagsArray+=("PREFIX=$out")
|
||||
|
|
Loading…
Reference in a new issue