diff options
author | Jim Meyering <meyering@redhat.com> | 2011-09-07 11:18:20 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2011-09-07 18:00:55 +0200 |
commit | f85ca2c876f6bc087dd1eca692f79f5f5d7f8bb3 (patch) | |
tree | bef0515d6a30b334566e2bc11afd171afb88a96b | |
parent | ac5739d3178374c783fb100ebf20c9064bc19033 (diff) | |
download | coreutils-f85ca2c876f6bc087dd1eca692f79f5f5d7f8bb3.tar.xz |
tests: avoid false-positive "make check" failure when perl is missing
* doc/Makefile.am (sc-lower-case-var): Skip this test when $(PERL)
is not usable. Reported by Bruno Haible.
-rw-r--r-- | doc/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 6f466c58d..888048396 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -128,7 +128,7 @@ find_upper_case_var = \ } \ END {$$m and (warn "$(ME): do not use upper case in \@var{...}\n"), exit 1}' sc-lower-case-var: - $(AM_V_GEN)$(PERL) -e 1 \ - && $(PERL) -lne $(find_upper_case_var) $(srcdir)/*.texi + $(AM_V_GEN)$(PERL) -e 1 || { echo $@: skipping test; exit 0; }; \ + $(PERL) -lne $(find_upper_case_var) $(srcdir)/*.texi check: check-texinfo |