aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-06-03 22:05:57 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-11-25 11:30:25 -0300
commit221c10177e64c7c53ee415bc1c015ecd17792451 (patch)
tree29239eaa20da92c112f77927fc83913995409f9b /configure
parentconfigure*: Fix wrong quote character in AC_MSG_ERROR (diff)
downloadfirejail-221c10177e64c7c53ee415bc1c015ecd17792451.tar.gz
firejail-221c10177e64c7c53ee415bc1c015ecd17792451.tar.zst
firejail-221c10177e64c7c53ee415bc1c015ecd17792451.zip
configure*: Add missing quotes to arguments
For increased safety and consistency. In addition, this should make it clearer where each argument starts and ends. See also the following item from autoconf NEWS[1]: > * Noteworthy changes in release 2.70 (2020-12-08) [stable] [...] > *** Many macros have become pickier about argument quotation. > > If you get a shell syntax error from your generated configure > script, or seemingly impossible misbehavior (e.g. entire blocks of > the configure script not getting executed), check first that all > macro arguments are properly quoted. The “M4 Quotation” section of > the manual explains how to quote macro arguments properly. > > It is unfortunately not possible for autoupdate to correct > quotation errors. [1] https://git.savannah.gnu.org/gitweb/?p=autoconf.git;a=blob;f=NEWS;h=ba418d1af5da752de77a2c388f9af56f8f1bf6a4;hb=97fbc5c184acc6fa591ad094eae86917f03459fa
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index ba553102d..0aa278e94 100755
--- a/configure
+++ b/configure
@@ -3562,10 +3562,10 @@ HAVE_OVERLAYFS=""
3562 3562
3563# 3563#
3564#AC_ARG_ENABLE([overlayfs], 3564#AC_ARG_ENABLE([overlayfs],
3565# AS_HELP_STRING([--disable-overlayfs], [disable overlayfs])) 3565# [AS_HELP_STRING([--disable-overlayfs], [disable overlayfs])])
3566#AS_IF([test "x$enable_overlayfs" != "xno"], [ 3566#AS_IF([test "x$enable_overlayfs" != "xno"], [
3567# HAVE_OVERLAYFS="-DHAVE_OVERLAYFS" 3567# HAVE_OVERLAYFS="-DHAVE_OVERLAYFS"
3568# AC_SUBST(HAVE_OVERLAYFS) 3568# AC_SUBST([HAVE_OVERLAYFS])
3569#]) 3569#])
3570 3570
3571HAVE_OUTPUT="" 3571HAVE_OUTPUT=""