Include Apple's libtool in darwin-cctools-wrapper

Packages which need GNU libtool should explicitly include it in buildInputs

svn path=/nixpkgs/trunk/; revision=30535
This commit is contained in:
Shea Levy 2011-11-23 02:39:09 +00:00
parent 9670a4fdb1
commit 68aaf3c843

View File

@ -1,6 +1,6 @@
source $stdenv/setup
ensureDir $out/bin
for i in ar as c++filt gprof ld nm nmedit ranlib size strings strip dsymutil; do
for i in ar as c++filt gprof ld nm nmedit ranlib size strings strip dsymutil libtool; do
ln -s /usr/bin/$i $out/bin/
done