Merge branch 'master' of /Users/johnw/src/ledger/master/

This commit is contained in:
John Wiegley 2007-05-08 10:32:59 +00:00
parent f246add263
commit 0477dd119a

9
valgrind.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
VALGRIND=$(which valgrind 2>&1)
if [ -x "$VALGRIND" ]; then
exec "$VALGRIND" --leak-check=full --show-reachable=yes "$@"
else
exec "$@"
fi