mirror of
https://git.proxmox.com/git/mirror_zfs.git
synced 2024-11-18 02:20:59 +03:00
9 lines
211 B
Plaintext
9 lines
211 B
Plaintext
|
dnl #
|
||
|
dnl # Check if GNU parallel is available.
|
||
|
dnl #
|
||
|
AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_PARALLEL], [
|
||
|
AC_CHECK_PROG([PARALLEL], [parallel], [yes])
|
||
|
|
||
|
AM_CONDITIONAL([HAVE_PARALLEL], [test "x$PARALLEL" = "xyes"])
|
||
|
])
|