3
0
Fork 0
forked from mirrors/nixpkgs

curl: fix configure flag for random device.

Fixes #42778.

Thanks for reporting, @dingxiangfei2009!
This commit is contained in:
Will Dietz 2018-07-01 12:47:24 -05:00
parent c85f23a82a
commit 81c9f7125f

View file

@ -96,7 +96,7 @@ stdenv.mkDerivation rec {
configureFlags = [
( if sslSupport then "--with-ssl=${openssl.crossDrv}" else "--without-ssl" )
( if gnutlsSupport then "--with-gnutls=${gnutls.crossDrv}" else "--without-gnutls" )
"--with-random /dev/urandom"
"--with-random=/dev/urandom"
];
};