summaryrefslogtreecommitdiff
path: root/source4/script
diff options
context:
space:
mode:
authorKai Blin <kai@samba.org>2008-03-18 10:53:25 +0100
committerKai Blin <kai@samba.org>2008-03-18 10:54:28 +0100
commit3dddbb5e26c4fc74cbdd0f6fa68669fe4d07a84e (patch)
treecbed56c9aff47733ab2df9fa344dff5044d28f12 /source4/script
parent3530099cf226d591b687715b63b144d243e52083 (diff)
downloadsamba-3dddbb5e26c4fc74cbdd0f6fa68669fe4d07a84e.tar.gz
samba-3dddbb5e26c4fc74cbdd0f6fa68669fe4d07a84e.tar.bz2
samba-3dddbb5e26c4fc74cbdd0f6fa68669fe4d07a84e.zip
make: Fix make valgrindtest-env
(This used to be commit f56912e3b545325e941ee898337c5483ec435e39)
Diffstat (limited to 'source4/script')
-rwxr-xr-xsource4/script/valgrind_run4
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/script/valgrind_run b/source4/script/valgrind_run
index 45361c22b1..5171d171a7 100755
--- a/source4/script/valgrind_run
+++ b/source4/script/valgrind_run
@@ -4,4 +4,6 @@ ENV="$1"
shift 1
-$ENV valgrind -q --db-attach=yes --num-callers=30 $@
+CMD="$ENV valgrind -q --db-attach=yes --num-callers=30 $@"
+echo $CMD
+eval $CMD