diff options
Diffstat (limited to 'bin/9ar')
-rwxr-xr-x | bin/9ar | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1,8 +1,7 @@ #!/bin/sh ar "$@" -case "`uname`" in -Darwin) - ranlib -c $2 - ;; -esac + +# We used to run ranlib if uname = Darwin, +# but the mkfiles now pass the s flag to 9ar, +# so ranlib should be unnecessary even there. |