Skip to content

Commit

Permalink
configure.ac: Ensure whitespace after each comma
Browse files Browse the repository at this point in the history
For increased consistency and readability.

This restores the spaces removed on commit bf81cd6 ("configure.ac: run
autoupdate to fix autoconf warning") / PR #4316.

Command used to check for the lack of whitespace:

    grep ',[^ ]' configure.ac
  • Loading branch information
kmk3 committed Nov 24, 2021
1 parent be66948 commit 3c6d523
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,10 @@
#

AC_PREREQ([2.68])
AC_INIT([firejail],[0.9.67],[[email protected]],[],[https://firejail.wordpress.com])
AC_CONFIG_SRCDIR([src/firejail/main.c])
AC_INIT([firejail], [0.9.67], [[email protected]], [],
[https://firejail.wordpress.com])

AC_CONFIG_SRCDIR([src/firejail/main.c])
AC_CONFIG_MACRO_DIR([m4])

AC_PROG_CC
Expand Down

0 comments on commit 3c6d523

Please sign in to comment.