From: Daniel P. Berrangé Date: Mon, 28 Apr 2025 16:17:37 +0000 (+0100) Subject: build-aux: add missing definition of PERL variable X-Git-Tag: v11.4.0-rc1~129 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=014bf667c6981e5988b00512e4530790620124ea;p=thirdparty%2Flibvirt.git build-aux: add missing definition of PERL variable Currently $(PERL) is expanding to nothing, but the spacing-check.pl test luckily still works via the shebang. Reviewed-by: Peter Krempa Signed-off-by: Daniel P. Berrangé --- diff --git a/build-aux/Makefile.in b/build-aux/Makefile.in index db44ee36a4..f30773e263 100644 --- a/build-aux/Makefile.in +++ b/build-aux/Makefile.in @@ -6,6 +6,7 @@ FLAKE8 = @flake8_path@ BLACK = @black_path@ RUNUTF8 = @runutf8@ PYTHON = @PYTHON3@ +PERL = @PERL@ GREP = @GREP@ SED = @SED@ AWK = @AWK@ diff --git a/build-aux/meson.build b/build-aux/meson.build index 06be6ab6c8..bcd10e89f2 100644 --- a/build-aux/meson.build +++ b/build-aux/meson.build @@ -42,6 +42,7 @@ if git and tests_enabled[0] 'black_path': black_path, 'runutf8': ' '.join(runutf8), 'PYTHON3': python3_prog.full_path(), + 'PERL': perl_prog.full_path(), 'GREP': grep_prog.full_path(), 'SED': sed_prog.full_path(), 'AWK': awk_prog.full_path(),