diff options
author | Russ Cox <rsc@swtch.com> | 2007-11-05 11:27:14 -0500 |
---|---|---|
committer | Russ Cox <rsc@swtch.com> | 2007-11-05 11:27:14 -0500 |
commit | 50808670fce561a500eb46267f7da10bddad3524 (patch) | |
tree | 19d9cee5d05f9c781ebe1708421358eee0564ebb /bin | |
parent | eb5d2a54d5ee79118c8081c7de3409f93e500b54 (diff) | |
download | plan9port-50808670fce561a500eb46267f7da10bddad3524.tar.gz plan9port-50808670fce561a500eb46267f7da10bddad3524.tar.bz2 plan9port-50808670fce561a500eb46267f7da10bddad3524.zip |
build: use ar s flag to avoid ranlib
Diffstat (limited to 'bin')
-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. |