bind: Fix references to openssl in *.la files

Avoids reference to the OpenSSL development headers.
This commit is contained in:
Tuomas Tynkkynen 2016-05-18 23:05:51 +03:00
parent 2132c86c45
commit ff24ce23c9

View file

@ -36,6 +36,10 @@ stdenv.mkDerivation rec {
postInstall = ''
moveToOutput bin/bind9-config $dev
moveToOutput bin/isc-config.sh $dev
for f in $out/lib/*.la; do
sed -i $f -e 's|-L${openssl.dev}|-L${openssl.out}|g'
done
'';
meta = {