mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
91bb2e91bd
make_gitrev.sh actually breaks checkbashisms' parser, which /insists/ that the end-of-line " is actually a string start Reviewed-by: Brian Behlendorf <behlendorf1@llnl.gov> Signed-off-by: Ahelenia Ziemiańska <nabijaczleweli@nabijaczleweli.xyz> Closes #12101
11 lines
370 B
Plaintext
11 lines
370 B
Plaintext
dnl #
|
|
dnl # Check if shellcheck and/or checkbashisms are available.
|
|
dnl #
|
|
AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_SHELLCHECK], [
|
|
AC_CHECK_PROG([SHELLCHECK], [shellcheck], [yes])
|
|
AC_CHECK_PROG([CHECKBASHISMS], [checkbashisms], [yes])
|
|
|
|
AM_CONDITIONAL([HAVE_SHELLCHECK], [test "x$SHELLCHECK" = "xyes"])
|
|
AM_CONDITIONAL([HAVE_CHECKBASHISMS], [test "x$CHECKBASHISMS" = "xyes"])
|
|
])
|