|
From: Rhys K. <rhy...@so...> - 2020-07-03 00:46:17
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=efbc655366e36cf6a747341cdec85e52cac83be4 commit efbc655366e36cf6a747341cdec85e52cac83be4 Author: Rhys Kidd <rhy...@gm...> Date: Fri Jul 3 10:29:42 2020 +1000 Small fixes for new auxchecks target that runs GNU Scientific Library tests Fixes: - Ensure proper slash is present in default folder path: auxprogs/auxchecks. - Ensure intermediate build artifacts aren't accidentally committed to git. Fixes: 5efd866df ("Add new auxchecks target that runs GNU Scientific Library tests.") Diff: --- .gitignore | 3 +++ auxprogs/Makefile.am | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 58d88f38a2..1080728e69 100644 --- a/.gitignore +++ b/.gitignore @@ -61,6 +61,9 @@ /auxprogs/valgrind-di-server /auxprogs/valgrind-listener +# /auxprogs/auxchecks/ +/auxprogs/auxchecks/* + # /cachegrind/ /cachegrind/*.so /cachegrind/.deps diff --git a/auxprogs/Makefile.am b/auxprogs/Makefile.am index 83c887217b..c05f82825e 100644 --- a/auxprogs/Makefile.am +++ b/auxprogs/Makefile.am @@ -127,7 +127,7 @@ auxclean: gsl-clean # You can override AUX_CHECK_DIR to use a previous download/build. # Must be an absolute path. # e.g. make auxchecks AUX_CHECK_DIR=$HOME/valgrind-auxtests -AUX_CHECK_DIR=$(abs_builddir)auxchecks +AUX_CHECK_DIR=$(abs_builddir)/auxchecks # GNU Scientific Library 1.6 GSL_DIR_NAME=gsl-1.6 |