aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@protonmail.com>2021-02-09 17:25:28 -0500
committerLibravatar GitHub <noreply@github.com>2021-02-09 17:25:28 -0500
commit2e19bf28fa59a144dd421f3d94756b23779a0835 (patch)
treee56465f614996086c06abd1b84c3264a490ebb2a
parentRemove skip ci if conndition from workflows (diff)
parentconfigure*: fix typo of HAVE_USERTMPFS (diff)
downloadfirejail-2e19bf28fa59a144dd421f3d94756b23779a0835.tar.gz
firejail-2e19bf28fa59a144dd421f3d94756b23779a0835.tar.zst
firejail-2e19bf28fa59a144dd421f3d94756b23779a0835.zip
Merge pull request #3967 from kmk3/fix-tmpfs-typo
configure*: fix typo of HAVE_USERTMPFS
-rwxr-xr-xconfigure2
-rw-r--r--configure.ac2
2 files changed, 2 insertions, 2 deletions
diff --git a/configure b/configure
index 4c19e6e85..2c00dedaf 100755
--- a/configure
+++ b/configure
@@ -3539,7 +3539,7 @@ HAVE_OVERLAYFS=""
3539# AC_SUBST(HAVE_OVERLAYFS) 3539# AC_SUBST(HAVE_OVERLAYFS)
3540#]) 3540#])
3541 3541
3542HAVE_USERTMPS="" 3542HAVE_USERTMPFS=""
3543# Check whether --enable-usertmpfs was given. 3543# Check whether --enable-usertmpfs was given.
3544if test "${enable_usertmpfs+set}" = set; then : 3544if test "${enable_usertmpfs+set}" = set; then :
3545 enableval=$enable_usertmpfs; 3545 enableval=$enable_usertmpfs;
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"], [