mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 11:51:11 +00:00
7cbcc9f888
As explained in the comment in build-aux/Makefile.in, the version of sed included in the FreeBSD base system is not GNU sed, which our syntax-check rules expect; as a result, many checks will fail with gmake: gsed: No such file or directory /bin/sh: gsed: not found Similarly to what we're already doing with GNU make and GNU grep, look for GNU sed during the configuration step and fail early if it's not available. Signed-off-by: Andrea Bolognani <abologna@redhat.com> Reviewed-by: Erik Skultety <eskultet@redhat.com>
13 lines
244 B
Makefile
13 lines
244 B
Makefile
# define variables
|
|
|
|
top_srcdir = @top_srcdir@
|
|
top_builddir = @top_builddir@
|
|
FLAKE8 = @flake8_path@
|
|
RUNUTF8 = @runutf8@
|
|
PYTHON = @PYTHON3@
|
|
GREP = @GREP@
|
|
SED = @SED@
|
|
|
|
# include syntax-check.mk file
|
|
include $(top_srcdir)/build-aux/syntax-check.mk
|