mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
Merge pull request #131270 from helsinki-systems/fix/postgresql-llvm
postgresql: fix build with clang on linux
This commit is contained in:
commit
f7c6a94e22
@ -33,7 +33,7 @@ let
|
||||
inherit sha256;
|
||||
};
|
||||
|
||||
hardeningEnable = lib.optionals (!stdenv.isDarwin) [ "pie" ];
|
||||
hardeningEnable = lib.optionals (!stdenv.cc.isClang) [ "pie" ];
|
||||
|
||||
outputs = [ "out" "lib" "doc" "man" ];
|
||||
setOutputFlags = false; # $out retains configureFlags :-/
|
||||
|
Loading…
Reference in New Issue
Block a user