diff options
author | Kai Blin <kai@samba.org> | 2008-03-18 10:53:25 +0100 |
---|---|---|
committer | Kai Blin <kai@samba.org> | 2008-03-18 10:54:28 +0100 |
commit | 3dddbb5e26c4fc74cbdd0f6fa68669fe4d07a84e (patch) | |
tree | cbed56c9aff47733ab2df9fa344dff5044d28f12 /source4/script | |
parent | 3530099cf226d591b687715b63b144d243e52083 (diff) | |
download | samba-3dddbb5e26c4fc74cbdd0f6fa68669fe4d07a84e.tar.gz samba-3dddbb5e26c4fc74cbdd0f6fa68669fe4d07a84e.tar.xz samba-3dddbb5e26c4fc74cbdd0f6fa68669fe4d07a84e.zip |
make: Fix make valgrindtest-env
(This used to be commit f56912e3b545325e941ee898337c5483ec435e39)
Diffstat (limited to 'source4/script')
-rwxr-xr-x | source4/script/valgrind_run | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source4/script/valgrind_run b/source4/script/valgrind_run index 45361c22b10..5171d171a74 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 |