mirror of
https://github.com/curl/curl.git
synced 2026-08-25 05:33:33 +03:00
am replace stray $(PERL) with @PERL@
This commit is contained in:
parent
e4a4c5ed1a
commit
979132f019
4 changed files with 8 additions and 8 deletions
|
|
@ -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))
|
||||
|
|
|
|||
|
|
@ -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) \
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue