dietlibc.i686-linux: disable pic

This commit is contained in:
Robin Gloster 2016-04-03 12:49:18 +00:00
parent 4ee2b2ab7b
commit fbb8067aa1
1 changed files with 2 additions and 1 deletions

View File

@ -13,7 +13,8 @@ stdenv.mkDerivation {
inherit glibc;
kernelHeaders = glibc.linuxHeaders;
hardeningDisable = [ "stackprotector" ];
hardeningDisable = [ "stackprotector" ]
++ stdenv.lib.optional stdenv.isi686 "pic";
patches = [