From: Brian Aker Date: Fri, 3 May 2013 07:52:47 +0000 (-0400) Subject: Fix for bootstrap X-Git-Tag: 1.0.18~24^2~3 X-Git-Url: https://git.m6w6.name/?a=commitdiff_plain;h=d2357c5b00bf76cb3fa5c0f8cd19578680895c64;hp=a07e53df4cd8d1e215a49eeac5d5d06fa0a50fb4;p=awesomized%2Flibmemcached Fix for bootstrap --- diff --git a/bootstrap.sh b/bootstrap.sh index 42fe3353..105822cf 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -446,7 +446,7 @@ function setup_gdb_command () { function setup_valgrind_command () { VALGRIND_PROGRAM=`type -p valgrind` if [[ -n "$VALGRIND_PROGRAM" ]]; then - VALGRIND_COMMAND="$VALGRIND_PROGRAM --error-exitcode=1 --leak-check=yes --malloc-fill=A5 --free-fill=DE --xml=yes --xml-file=\"valgrind-%p.xml\" --gen-suppressions=yes --log-file=\"valgrind-%p.txt\"" + VALGRIND_COMMAND="$VALGRIND_PROGRAM --error-exitcode=1 --leak-check=yes --malloc-fill=A5 --free-fill=DE --xml=yes --xml-file=\"valgrind-%p.xml\"" fi }