From 3c6d5232b880dbf474b9c567bb4530ce1842d612 Mon Sep 17 00:00:00 2001 From: "Kelvin M. Klann" Date: Sun, 27 Jun 2021 18:51:44 -0300 Subject: [PATCH] configure.ac: Ensure whitespace after each comma For increased consistency and readability. This restores the spaces removed on commit bf81cd6ad ("configure.ac: run autoupdate to fix autoconf warning") / PR #4316. Command used to check for the lack of whitespace: grep ',[^ ]' configure.ac --- configure.ac | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 5ef97cbd0c7..75012348a69 100644 --- a/configure.ac +++ b/configure.ac @@ -12,9 +12,10 @@ # AC_PREREQ([2.68]) -AC_INIT([firejail],[0.9.67],[netblue30@protonmail.com],[],[https://firejail.wordpress.com]) -AC_CONFIG_SRCDIR([src/firejail/main.c]) +AC_INIT([firejail], [0.9.67], [netblue30@protonmail.com], [], + [https://firejail.wordpress.com]) +AC_CONFIG_SRCDIR([src/firejail/main.c]) AC_CONFIG_MACRO_DIR([m4]) AC_PROG_CC