am replace stray $(PERL) with @PERL@

This commit is contained in:
Viktor Szakats 2025-08-02 09:27:33 +02:00
parent e4a4c5ed1a
commit 979132f019
No known key found for this signature in database
GPG key ID: B5ABD165E2AEF201
4 changed files with 8 additions and 8 deletions

View file

@ -117,7 +117,7 @@ else
TEST_COMMON += !documentation
endif
TEST = srcdir=$(srcdir) $(PERL) $(PERLFLAGS) $(srcdir)/runtests.pl $(TEST_COMMON)
TEST = srcdir=$(srcdir) @PERL@ $(PERLFLAGS) $(srcdir)/runtests.pl $(TEST_COMMON)
TEST_Q = -a -s
TEST_AM = -a -am
TEST_F = -a -p -r
@ -136,7 +136,7 @@ endif
# make sure that PERL is pointing to an executable
perlcheck:
@if ! test -x "$(PERL)"; then echo "No perl!"; exit 2; fi
@if ! test -x "@PERL@"; then echo "No perl!"; exit 2; fi
build-certs: perlcheck
(cd certs && $(MAKE))

View file

@ -38,7 +38,7 @@ all-am: test-ca.cacert
# Generate all certs in a single shot, but declare just a single target file
# to support GNU Make <4.3 without the "grouped explicit targets" feature.
test-ca.cacert: $(CERTCONFIG_CA) $(CERTCONFIGS) genserv.pl
$(PERL) $(srcdir)/genserv.pl test $(CERTCONFIGS)
@PERL@ $(srcdir)/genserv.pl test $(CERTCONFIGS)
clean-local:
rm -f $(GENERATEDCERTS) \