]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
build-aux: add missing definition of PERL variable
authorDaniel P. Berrangé <berrange@redhat.com>
Mon, 28 Apr 2025 16:17:37 +0000 (17:17 +0100)
committerDaniel P. Berrangé <berrange@redhat.com>
Fri, 2 May 2025 08:31:27 +0000 (09:31 +0100)
Currently $(PERL) is expanding to nothing, but the spacing-check.pl test
luckily still works via the shebang.

Reviewed-by: Peter Krempa <pkrempa@redhat.com>
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
build-aux/Makefile.in
build-aux/meson.build

index db44ee36a42d3ab2e97f8fd558ac89e3f83ecdde..f30773e263ed1469fd1adc4821ae1a8c4d5763de 100644 (file)
@@ -6,6 +6,7 @@ FLAKE8 = @flake8_path@
 BLACK = @black_path@
 RUNUTF8 = @runutf8@
 PYTHON = @PYTHON3@
+PERL = @PERL@
 GREP = @GREP@
 SED = @SED@
 AWK = @AWK@
index 06be6ab6c8a94df57b2bbca454e646adcab6e5d7..bcd10e89f2f4d26170ec821c53fd67683d006707 100644 (file)
@@ -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(),