]> git.proxmox.com Git - mirror_zfs.git/blob - config/always-shellcheck.m4
Allow mounting snapshots in .zfs/snapshot as a regular user
[mirror_zfs.git] / config / always-shellcheck.m4
1 dnl #
2 dnl # Check if shellcheck and/or checkbashisms are available.
3 dnl #
4 AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_SHELLCHECK], [
5 AC_CHECK_PROG([SHELLCHECK], [shellcheck], [yes])
6 AC_CHECK_PROG([CHECKBASHISMS], [checkbashisms], [yes])
7
8 AM_CONDITIONAL([HAVE_SHELLCHECK], [test "x$SHELLCHECK" = "xyes"])
9 AM_CONDITIONAL([HAVE_CHECKBASHISMS], [test "x$CHECKBASHISMS" = "xyes"])
10 ])