Files
mirror_zfs/config/always-sed.m4
T

18 lines
579 B
Plaintext
Raw Normal View History

dnl # SPDX-License-Identifier: CDDL-1.0
2019-10-16 22:19:48 -04:00
dnl #
dnl # Set the flags used for sed in-place edits.
dnl #
AC_DEFUN([ZFS_AC_CONFIG_ALWAYS_SED], [
2020-06-22 12:08:12 -04:00
AC_REQUIRE([AC_PROG_SED])dnl
AC_CACHE_CHECK([for sed --in-place], [ac_cv_inplace], [
2020-12-03 13:01:16 -05:00
tmpfile=$(mktemp conftest.XXXXXX)
2020-06-22 12:08:12 -04:00
echo foo >$tmpfile
AS_IF([$SED --in-place 's#foo#bar#' $tmpfile 2>/dev/null],
[ac_cv_inplace="--in-place"],
[$SED -i '' 's#foo#bar#' $tmpfile 2>/dev/null],
[ac_cv_inplace="-i ''"],
[AC_MSG_ERROR([$SED does not support in-place])])
])
AC_SUBST([ac_inplace], [$ac_cv_inplace])
2019-10-16 22:19:48 -04:00
])