summary refs log tree commit diff
path: root/pkgs/build-support/native-darwin-cctools-wrapper
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-07-14 17:11:39 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-07-14 17:11:39 +0000
commit471dc2c8bc237149c1f5cc65d3dba0e537092674 (patch)
treed7b7f3fca9921899da13149ca701ac90f5dafbeb /pkgs/build-support/native-darwin-cctools-wrapper
parent10c99c750e4b4da422097d980574e96d8226af89 (diff)
downloadnixpkgs-471dc2c8bc237149c1f5cc65d3dba0e537092674.tar
nixpkgs-471dc2c8bc237149c1f5cc65d3dba0e537092674.tar.gz
nixpkgs-471dc2c8bc237149c1f5cc65d3dba0e537092674.tar.bz2
nixpkgs-471dc2c8bc237149c1f5cc65d3dba0e537092674.tar.lz
nixpkgs-471dc2c8bc237149c1f5cc65d3dba0e537092674.tar.xz
nixpkgs-471dc2c8bc237149c1f5cc65d3dba0e537092674.tar.zst
nixpkgs-471dc2c8bc237149c1f5cc65d3dba0e537092674.zip
* Probably need "nm" etc. as well.
svn path=/nixpkgs/trunk/; revision=5712
Diffstat (limited to 'pkgs/build-support/native-darwin-cctools-wrapper')
-rw-r--r--pkgs/build-support/native-darwin-cctools-wrapper/builder.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh b/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh
index 583f4ef70f9..fae0c863f00 100644
--- a/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh
+++ b/pkgs/build-support/native-darwin-cctools-wrapper/builder.sh
@@ -1,4 +1,6 @@
 source $stdenv/setup
 
 ensureDir $out/bin
-ln -s /usr/bin/ld /usr/bin/as /usr/bin/ar /usr/bin/ranlib /usr/bin/strip $out/bin
+for i in ar as c++filt gprof ld nm ranlib size strings strip; do 
+    ln -s /usr/bin/$i $out/bin/
+done