diff options
author | Jim Meyering <meyering@redhat.com> | 2009-04-30 13:50:40 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2009-04-30 13:50:40 +0200 |
commit | 0e945ebcc5cb018771819f8b91737db3298bab02 (patch) | |
tree | 91ad766b8cfe1cfd6a3a422fe9de9fd41c59266d /doc | |
parent | 71ebb443d816caad6f4142403d57711d8bf2205e (diff) | |
download | coreutils-0e945ebcc5cb018771819f8b91737db3298bab02.tar.xz |
build: "make check" now fails in a friendlier manner for missing Perl
* doc/Makefile.am (sc-lower-case-var): Don't redirect stderr of
$(PERL) (which is sometimes build-aux/missing) to /dev/null,
so that a failing "make check" explains that Perl is not installed.
Reported by James Youngman.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 57063dfba..be610a276 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -115,7 +115,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 2> /dev/null \ + $(AM_V_GEN)$(PERL) -e 1 \ && $(PERL) -lne $(find_upper_case_var) $(srcdir)/*.texi check: check-texinfo |