diff options
author | Harald van Dijk <[email protected]> | 2020-07-01 17:05:21 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-07-01 09:05:21 -0700 |
commit | 22831636c8c132c62c771c64e7131b422e41be34 (patch) | |
tree | fed50b3c1ea330abc87b879df93bdd9d7dc7a8a4 /configure.ac | |
parent | 2ac6aa117603d5856b172114dcc62c454dafddb1 (diff) |
configure fixes
a+=b is not supported by all shells. It is equivalent to a=${a}b, so
just rewrite it as that.
This also fixes commit 9ea6c3d3, which intended to only make the
definitions of _dracutdir, _udevdir, and _udevruledir conditional, but
actually ensured that _initconfdir no longer got defined if _dracutdir
was defined, and defined _udevdir to the value that should have been
used for _udevruledir.
This also fixes the fact that the checks introduced by commit 9ea6c3d3
could never work: ZFS_AC_PACKAGE was called before the configuration
options were processed.
Reviewed-by: Brian Behlendorf <[email protected]>
Signed-off-by: Harald van Dijk <[email protected]>
Closes #10518
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 861c02e61..e405ddb57 100644 --- a/configure.ac +++ b/configure.ac @@ -55,8 +55,8 @@ AX_CODE_COVERAGE _AM_PROG_TAR(pax) ZFS_AC_LICENSE -ZFS_AC_PACKAGE ZFS_AC_CONFIG +ZFS_AC_PACKAGE ZFS_AC_DEBUG ZFS_AC_DEBUGINFO ZFS_AC_DEBUG_KMEM |