boost: correct the install names for darwin

This also makes the recent change for ledger unnecessary.
This commit is contained in:
John Wiegley
2014-11-04 02:28:35 -06:00
parent 52017df966
commit a4ee94b741
2 changed files with 5 additions and 5 deletions
-5
View File
@@ -23,11 +23,6 @@ stdenv.mkDerivation {
postInstall = ''
mkdir -p $out/share/emacs/site-lisp/
cp -v "$src/lisp/"*.el $out/share/emacs/site-lisp/
'' + stdenv.lib.optionalString stdenv.isDarwin ''
for i in date_time filesystem system iostreams regex unit_test_framework; do
boostlib=libboost_''$i.dylib
install_name_tool -change ''$boostlib ${boost}/lib/''$boostlib $out/bin/ledger
done
'';
meta = {