syslinux: disable fortify hardening

This commit is contained in:
Robin Gloster 2016-04-03 12:51:54 +00:00
parent fbb8067aa1
commit 5978109194

View File

@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
buildInputs = [ libuuid makeWrapper ];
enableParallelBuilding = false; # Fails very rarely with 'No rule to make target: ...'
hardeningDisable = [ "pic" "stackprotector" ];
hardeningDisable = [ "pic" "stackprotector" "fortify" ];
preBuild = ''
substituteInPlace Makefile --replace /bin/pwd $(type -P pwd)