From: Paul F. <pa...@so...> - 2025-05-19 06:29:19
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=382efd0ccbe8447eca4bde0068a205a01d02f90e commit 382efd0ccbe8447eca4bde0068a205a01d02f90e Author: Paul Floyd <pj...@wa...> Date: Mon May 19 08:23:57 2025 +0200 Script: move vgstack to configure.ac section with chmod -x Previously wasn't possible to run it in place without doing a chmod -x on it first. Diff: --- configure.ac | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index caa79c0147..a235f1a424 100755 --- a/configure.ac +++ b/configure.ac @@ -5699,7 +5699,6 @@ AC_CONFIG_FILES([ auxprogs/Makefile mpi/Makefile coregrind/Makefile - coregrind/vgstack memcheck/Makefile memcheck/tests/Makefile memcheck/tests/common/Makefile @@ -5791,6 +5790,8 @@ AC_CONFIG_FILES([coregrind/link_tool_exe_darwin], [chmod +x coregrind/link_tool_exe_darwin]) AC_CONFIG_FILES([coregrind/link_tool_exe_solaris], [chmod +x coregrind/link_tool_exe_solaris]) +AC_CONFIG_FILES([coregrind/vgstack], + [chmod +x coregrind/vgstack]) AC_CONFIG_FILES([tests/filter_stderr_basic], [chmod +x tests/filter_stderr_basic]) AC_CONFIG_FILES([tests/filter_discards], |