diff options
author | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-01-21 14:35:51 +0100 |
---|---|---|
committer | Reimar Döffinger <Reimar.Doeffinger@gmx.de> | 2012-01-21 14:52:05 +0100 |
commit | d41c824b233292d7e5314a7029fab8cf554a9b2b (patch) | |
tree | f2c0e69dbdfb6ad069bf0ef591830fa65e06f152 | |
parent | a9117c755ec87f2e5fa9cd88d94713ee26031092 (diff) | |
download | ffmpeg-d41c824b233292d7e5314a7029fab8cf554a9b2b.tar.gz |
Fix valgrind FATE for out-of-tree builds.
Signed-off-by: Reimar Döffinger <Reimar.Doeffinger@gmx.de>
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3243,7 +3243,7 @@ fi enabled debug && add_cflags -g"$debuglevel" && add_asflags -g"$debuglevel" enabled coverage && add_cflags "-fprofile-arcs -ftest-coverage" && add_ldflags "-fprofile-arcs -ftest-coverage" -test -n "$valgrind" && target_exec="$valgrind --error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=tests/fate-valgrind.supp" +test -n "$valgrind" && target_exec="$valgrind --error-exitcode=1 --malloc-fill=0x2a --track-origins=yes --leak-check=full --gen-suppressions=all --suppressions=$source_path/tests/fate-valgrind.supp" # add some useful compiler flags if supported check_cflags -Wdeclaration-after-statement |