Commit 39cbc7bb0c8f30c05d0190899aa023e8f04ae317

Guillem Jover 2023-03-14T01:48:45

build: Fix configure.ac indentation Use the same style as the newly added code, which should make the code more readable.

diff --git a/configure.ac b/configure.ac
index 9aea526..3315ade 100644
--- a/configure.ac
+++ b/configure.ac
@@ -6,10 +6,18 @@ AC_CONFIG_SRCDIR([src/sha2.c])
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_MACRO_DIR([m4])
 
-AM_INIT_AUTOMAKE([1.8 -Wall foreign nostdinc no-dist-gzip dist-xz])
-
-m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])],
-                            [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])])
+AM_INIT_AUTOMAKE(
+  [1.8]
+  [-Wall]
+  [foreign]
+  [nostdinc]
+  [no-dist-gzip dist-xz]
+)
+
+m4_ifdef([AM_SILENT_RULES],
+  [AM_SILENT_RULES([yes])],
+  [AC_SUBST([AM_DEFAULT_VERBOSITY], [1])]
+)
 
 LIBMD_ABI_MAJOR=0
 LIBMD_ABI_MINOR=0
@@ -100,12 +108,12 @@ AC_TYPE_SSIZE_T
 # Checks for library functions.
 
 AC_CONFIG_FILES([
-	Makefile
-	include/Makefile
-	man/Makefile
-	src/Makefile
-	src/libmd.pc
-	test/Makefile
+  Makefile
+  include/Makefile
+  man/Makefile
+  src/Makefile
+  src/libmd.pc
+  test/Makefile
 ])
 AC_CONFIG_HEADERS([config.h])
 AC_OUTPUT