valgrind: print absolute path
authorPavel Šimerda <psimerda@redhat.com>
Tue, 30 Jul 2013 09:34:26 +0000 (11:34 +0200)
committerPavel Šimerda <psimerda@redhat.com>
Tue, 30 Jul 2013 09:39:28 +0000 (11:39 +0200)
Relative paths in makefiles have different anchor than the current shell
directory.

tools/run-test-valgrind.sh

index abd3286..506fff7 100755 (executable)
@@ -20,7 +20,7 @@ $LIBTOOL --mode=execute "$VALGRIND" \
 RESULT=$?
 
 if [ $RESULT -ne 0 ]; then
-       echo "Don't forget to check the valgrind log at '$LOGFILE'." >&2
+       echo "Don't forget to check the valgrind log at '`realpath $LOGFILE`'." >&2
 fi
 
 exit $RESULT