From 68aaf3c843bc805b6ab7a21383766ff18786e1b3 Mon Sep 17 00:00:00 2001 From: Shea Levy Date: Wed, 23 Nov 2011 02:39:09 +0000 Subject: [PATCH] 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 --- pkgs/build-support/native-darwin-cctools-wrapper/builder.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh b/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh index 411cb867a98b..c79b3709ee8b 100644 --- a/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh +++ b/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh @@ -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