aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-11-23 20:08:52 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-11-24 15:58:51 -0300
commitef6df15def7de0d6fe738e66d44ce99abc0d6527 (patch)
treef3b9f57e32b6d79291c4be0e54ea9b40986c4a23 /configure.ac
parentconfigure*: Trim trailing spaces on var assignments (diff)
downloadfirejail-ef6df15def7de0d6fe738e66d44ce99abc0d6527.tar.gz
firejail-ef6df15def7de0d6fe738e66d44ce99abc0d6527.tar.zst
firejail-ef6df15def7de0d6fe738e66d44ce99abc0d6527.zip
configure*: Fix wrong quote character in AC_MSG_ERROR
Square brackets are used as quotes in autoconf. From Section 8.1.1, Active Characters of the Autoconf manual[1]: > To fully understand where proper quotation is important, you first > need to know what the special characters are in Autoconf: ‘#’ > introduces a comment inside which no macro expansion is performed, ‘,’ > separates arguments, ‘[’ and ‘]’ are the quotes themselves, ‘(’ and > ‘)’ (which M4 tries to match by pairs), and finally ‘$’ inside a macro > definition. [1] https://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.70/autoconf.html#Active-Characters
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index d9d9f08cb..5acc0fe88 100644
--- a/configure.ac
+++ b/configure.ac
@@ -120,7 +120,7 @@ AS_IF([test "x$enable_man" != "xno"], [
120 HAVE_MAN="-DHAVE_MAN" 120 HAVE_MAN="-DHAVE_MAN"
121 AC_SUBST(HAVE_MAN) 121 AC_SUBST(HAVE_MAN)
122 AC_CHECK_PROG([HAVE_GAWK], [gawk], [yes], [no]) 122 AC_CHECK_PROG([HAVE_GAWK], [gawk], [yes], [no])
123 AS_IF([test "x$HAVE_GAWK" != "xyes"], [AC_MSG_ERROR("*** gawk not found ***")]) 123 AS_IF([test "x$HAVE_GAWK" != "xyes"], [AC_MSG_ERROR([*** gawk not found ***])])
124]) 124])
125 125
126HAVE_FIRETUNNEL="" 126HAVE_FIRETUNNEL=""