#!/bin/sh
if grep -q /usr/local/lib /etc/ld.so.conf
 then
  echo > /dev/null
 else
  echo /usr/local/lib >> /etc/ld.so.conf
 fi
