1#!/bin/sh
2
3# Run a program with the new shared libraries instead of the installed ones.
4
5LD_LIBRARY_PATH=`pwd`/lib DYLD_LIBRARY_PATH=`pwd`/lib exec "$@"
6