tadd ranlib for mac - plan9port - [fork] Plan 9 from user space
 (HTM) git clone git://src.adamsgaard.dk/plan9port
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
 (DIR) commit 66c1faee8dd835e8a6a5f6a743506c03df7272d2
 (DIR) parent 38c087aa6de2776139e7b4cbacd36942fa0b98de
 (HTM) Author: rsc <devnull@localhost>
       Date:   Sun, 30 Jan 2005 16:50:02 +0000
       
       add ranlib for mac
       
       Diffstat:
         M unix/make/Make.Darwin-PowerMacinto… |       1 +
         M unix/make/Makefile.LIB              |       1 +
         M unix/make/Makefile.TOP              |       2 ++
       
       3 files changed, 4 insertions(+), 0 deletions(-)
       ---
 (DIR) diff --git a/unix/make/Make.Darwin-PowerMacintosh b/unix/make/Make.Darwin-PowerMacintosh
       t@@ -4,3 +4,4 @@ O=o
        AR=ar
        ARFLAGS=rvc
        NAN=nan64.$O
       +RANLIB=ranlib
 (DIR) diff --git a/unix/make/Makefile.LIB b/unix/make/Makefile.LIB
       t@@ -1,4 +1,5 @@
        $(LIB): $(OFILES)
                $(AR) $(ARFLAGS) $(LIB) $(OFILES)
       +        $(RANLIB) $(LIB)
        
        NUKEFILES+=$(LIB)
 (DIR) diff --git a/unix/make/Makefile.TOP b/unix/make/Makefile.TOP
       t@@ -10,6 +10,8 @@ OBJTYPE!=uname -m | sed 's;i.86;386;; s;/.*;;; s; ;;g'
        # the gnu rules will mess up bsd but not vice versa,
        # hence the gnu rules come first.
        
       +RANLIB=true
       +
        include Make.$(SYSNAME)-$(OBJTYPE)
        
        PREFIX=/usr/local