aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-02-09 12:26:27 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-02-09 16:38:59 -0300
commit5a5e603cd8185a61c7535af87101a6d76b451fae (patch)
treee56465f614996086c06abd1b84c3264a490ebb2a /configure.ac
parentRemove skip ci if conndition from workflows (diff)
downloadfirejail-5a5e603cd8185a61c7535af87101a6d76b451fae.tar.gz
firejail-5a5e603cd8185a61c7535af87101a6d76b451fae.tar.zst
firejail-5a5e603cd8185a61c7535af87101a6d76b451fae.zip
configure*: fix typo of HAVE_USERTMPFS
Added on commit 64a8d6a7f ("compile time option to disable --private-cache and --tmpfs for regular user"). These are the only occurrences: $ git ls-files -z | xargs -0 grep -Fin USERTMPS configure:3542:HAVE_USERTMPS="" configure.ac:80:HAVE_USERTMPS=""
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 69d85fa77..f5e3347ea 100644
--- a/configure.ac
+++ b/configure.ac
@@ -77,7 +77,7 @@ AC_SUBST(HAVE_OVERLAYFS)
77# AC_SUBST(HAVE_OVERLAYFS) 77# AC_SUBST(HAVE_OVERLAYFS)
78#]) 78#])
79 79
80HAVE_USERTMPS="" 80HAVE_USERTMPFS=""
81AC_ARG_ENABLE([usertmpfs], 81AC_ARG_ENABLE([usertmpfs],
82 AS_HELP_STRING([--disable-usertmpfs], [disable tmpfs as regular user])) 82 AS_HELP_STRING([--disable-usertmpfs], [disable tmpfs as regular user]))
83AS_IF([test "x$enable_usertmpfs" != "xno"], [ 83AS_IF([test "x$enable_usertmpfs" != "xno"], [