Merge pull request #131270 from helsinki-systems/fix/postgresql-llvm
postgresql: fix build with clang on linux
This commit is contained in:
commit
f7c6a94e22
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue