summaryrefslogtreecommitdiffstats
path: root/darwinfixlib.sh
diff options
context:
space:
mode:
Diffstat (limited to 'darwinfixlib.sh')
-rwxr-xr-xdarwinfixlib.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/darwinfixlib.sh b/darwinfixlib.sh
deleted file mode 100755
index 6196ebd8aa..0000000000
--- a/darwinfixlib.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/sh
-if [ `uname -s` = 'Darwin' ]; then
- echo "Fixing libs with ranlib for Darwin (MacOSX)"
- for i in $* ; do
- if (echo $i | grep \\.a) >/dev/null 2>&1; then
- echo "ranlib $i"
- (ranlib $i) >/dev/null 2>&1
- fi
- done
-fi
-exit 0