|
From: Julian S. <js...@ac...> - 2003-11-04 07:13:53
|
CVS commit by jseward:
If we bomb out due to not finding the executable, print our invokation
name. Before:
'ssss' not found in $PATH, aborting.
After:
./Inst/bin/valgrind: 'ssss' not found in $PATH, aborting.
(Already in STABLE).
M +1 -1 valgrind.in 1.38
--- valgrind/coregrind/valgrind.in #1.37:1.38
@@ -118,5 +118,5 @@
which_prog=`which $1 2> /dev/null`
if [ z$which_prog = z ] ; then
- echo "'$1' not found in \$PATH, aborting."
+ echo "$0: '$1' not found in \$PATH, aborting."
exit
fi
|