#!/bin/sh

RANLIB=`which ranlib`
if [ "$RANLIB" = "" -o ! -x "$RANLIB" ]; then
	RANLIB=/bin/echo
fi

echo $RANLIB
exit 0
