plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit 8b6a5e678a09ae92d95a25bc60c03467e0224ce9
parent 912fba95e74c7631352bc5007249d75e720bbcdf
Author: rsc <devnull@localhost>
Date:   Mon, 24 Nov 2003 22:40:36 +0000

portable ar.

Diffstat:
Abin/9ar | 9+++++++++
1 file changed, 9 insertions(+), 0 deletions(-)

diff --git a/bin/9ar b/bin/9ar @@ -0,0 +1,9 @@ +#!/bin/sh + +ar "$@" +case "`uname`" in +Darwin) + ranlib -c $2 + ;; +esac +