tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
syslinux: disable fortify hardening
Robin Gloster
9 years ago
59781091
fbb8067a
+1
-1
1 changed file
expand all
collapse all
unified
split
pkgs
os-specific
linux
syslinux
default.nix
+1
-1
pkgs/os-specific/linux/syslinux/default.nix
···
16
16
buildInputs = [ libuuid makeWrapper ];
17
17
18
18
enableParallelBuilding = false; # Fails very rarely with 'No rule to make target: ...'
19
19
-
hardeningDisable = [ "pic" "stackprotector" ];
19
19
+
hardeningDisable = [ "pic" "stackprotector" "fortify" ];
20
20
21
21
preBuild = ''
22
22
substituteInPlace Makefile --replace /bin/pwd $(type -P pwd)