|
From: Gilles C. <gil...@xe...> - 2014-04-19 15:27:21
|
Hi, a minor modification is needed to allow building valgrind out of its source tree: --- orig.valgrind-3.9.0/Makefile.am 2013-10-23 12:50:02.000000000 +0200 +++ valgrind-3.9.0/Makefile.am 2014-03-15 00:35:27.044018414 +0100 @@ -64,7 +64,7 @@ CLEANFILES = default.supp default.supp: $(DEFAULT_SUPP_FILES) echo "# This is a generated file, composed of the following suppression rules:" > default.supp echo "# " $(DEFAULT_SUPP_FILES) >> default.supp - cat $(DEFAULT_SUPP_FILES) >> default.supp + cat $^ >> default.supp ## Preprend @PERL@ because tests/vg_regtest isn't executable ## Ensure make exits with error if PERL fails or post_regtest_checks fails. Regards. -- Gilles. |