1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

postgresql: Fix cross compilation

b1548ce080 dropped the C compiler prefix
This commit is contained in:
John Ericson 2018-08-20 04:07:27 -04:00 committed by Vladimír Čunát
parent 153a19df05
commit 440ac01e5a
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -25,7 +25,7 @@ let
NIX_CFLAGS_COMPILE = [ "-I${libxml2.dev}/include/libxml2" ];
# Otherwise it retains a reference to compiler and fails; see #44767. TODO: better.
preConfigure = "CC=cc";
preConfigure = "CC=${stdenv.cc.targetPrefix}cc";
configureFlags = [
"--with-openssl"