* t/ax/test-init.sh: Here, by adding extra quoting for two occurrences of the string "perl".
Signed-off-by: Stefano Lattarini <stefano.lattar...@gmail.com> --- t/ax/test-init.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/t/ax/test-init.sh b/t/ax/test-init.sh index 24945b6..dce60e9 100644 --- a/t/ax/test-init.sh +++ b/t/ax/test-init.sh @@ -591,7 +591,8 @@ fetch_tap_driver () # TODO: we should devise a way to make the shell TAP driver tested also # TODO: with /bin/sh, for better coverage. case $am_tap_implementation in - perl) + # Extra quoting required to avoid maintainer-check spurious failures. + 'perl') $PERL -MTAP::Parser -e 1 \ || skip_all_ "cannot import TAP::Parser perl module" sed "1s|#!.*|#! $PERL -w|" "$am_scriptdir"/tap-driver.pl >tap-driver @@ -829,7 +830,8 @@ do fi unset priv_check_temp overwrite_status ;; - perl-threads) + # Extra quoting required to avoid maintainer-check spurious failures. + 'perl-threads') if test "$WANT_NO_THREADS" = "yes"; then skip_all_ "Devel::Cover cannot cope with threads" fi -- 1.7.9.5