Skip to content

Commit

Permalink
configure*: fix typo of HAVE_USERTMPFS
Browse files Browse the repository at this point in the history
Added on commit 64a8d6a ("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=""
  • Loading branch information
kmk3 committed Feb 9, 2021
1 parent 091802e commit 5a5e603
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -3539,7 +3539,7 @@ HAVE_OVERLAYFS=""
# AC_SUBST(HAVE_OVERLAYFS)
#])

HAVE_USERTMPS=""
HAVE_USERTMPFS=""
# Check whether --enable-usertmpfs was given.
if test "${enable_usertmpfs+set}" = set; then :
enableval=$enable_usertmpfs;
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ AC_SUBST(HAVE_OVERLAYFS)
# AC_SUBST(HAVE_OVERLAYFS)
#])

HAVE_USERTMPS=""
HAVE_USERTMPFS=""
AC_ARG_ENABLE([usertmpfs],
AS_HELP_STRING([--disable-usertmpfs], [disable tmpfs as regular user]))
AS_IF([test "x$enable_usertmpfs" != "xno"], [
Expand Down

0 comments on commit 5a5e603

Please sign in to comment.