From 50808670fce561a500eb46267f7da10bddad3524 Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Mon, 5 Nov 2007 11:27:14 -0500 Subject: build: use ar s flag to avoid ranlib --- bin/9ar | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'bin') diff --git a/bin/9ar b/bin/9ar index 42c61379..f9c8668f 100755 --- a/bin/9ar +++ b/bin/9ar @@ -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. -- cgit v1.2.3