mariadb: fix multiple outputs on darwin

This commit is contained in:
Jude Taylor 2015-10-29 12:52:19 -07:00
parent 91bc2e97ba
commit 86dae70173

View file

@ -93,6 +93,12 @@ stdenv.mkDerivation rec {
mv $out/lib $lib
mv $out/include $lib
# Fix library rpaths
# TODO: put this in the stdenv to prepare for wide usage of multi-output derivations
for file in $(grep -rl $out/lib $lib); do
install_name_tool -delete_rpath $out/lib -add_rpath $lib $file
done
# Fix the mysql_config
sed -i $out/bin/mysql_config \
-e 's,-lz,-L${zlib}/lib -lz,g' \