From 636029883ad0a8cd89489cd40447e1d4096ab137 Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 22 Jan 2023 21:15:23 +0000 Subject: acl: disable fortify3 hardening --- pkgs/development/libraries/acl/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/acl/default.nix b/pkgs/development/libraries/acl/default.nix index 1ac577e19cd..5b31ba3a1c8 100644 --- a/pkgs/development/libraries/acl/default.nix +++ b/pkgs/development/libraries/acl/default.nix @@ -19,6 +19,9 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ gettext ]; buildInputs = [ attr ]; + # causes failures in coreutils test suite + hardeningDisable = [ "fortify3" ]; + # Upstream use C++-style comments in C code. Remove them. # This comment breaks compilation if too strict gcc flags are used. patchPhase = '' -- cgit 1.4.1