|
From: Rhys K. <rhy...@so...> - 2019-03-11 12:00:56
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=fbc91518e551cea80a3f7bf9d441c6338f9934f8 commit fbc91518e551cea80a3f7bf9d441c6338f9934f8 Author: Rhys Kidd <rhy...@gm...> Date: Sat Feb 2 22:18:05 2019 -0500 Makefile.am: Consistent indent and align This approach is utilized consistently throughout the file, and would make alphabetical reordering easier. Adopt it here as well. Signed-off-by: Rhys Kidd <rhy...@gm...> Diff: --- Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index a63cd9b..0458c93 100644 --- a/Makefile.am +++ b/Makefile.am @@ -3,7 +3,8 @@ AUTOMAKE_OPTIONS = 1.10 include $(top_srcdir)/Makefile.all.am -TOOLS = memcheck \ +TOOLS = \ + memcheck \ cachegrind \ callgrind \ helgrind \ @@ -13,7 +14,8 @@ TOOLS = memcheck \ lackey \ none -EXP_TOOLS = exp-sgcheck \ +EXP_TOOLS = \ + exp-sgcheck \ exp-bbv # Put docs last because building the HTML is slow and we want to get |