diff options
author | Stefano Lattarini <stefano.lattarini@gmail.com> | 2012-08-29 15:55:54 +0200 |
---|---|---|
committer | Jim Meyering <meyering@redhat.com> | 2012-08-30 15:21:59 +0200 |
commit | 9669de86888f84546fd164ab41b53bd863c0490d (patch) | |
tree | 38bf09e7edd66e4db3c0f633585486883a8ee0d7 /man | |
parent | 0f54e9761faf6a9c2bb3c7d1c415eea5d50985ae (diff) | |
download | coreutils-9669de86888f84546fd164ab41b53bd863c0490d.tar.xz |
build: fix a stray usage of uninitialized $(ME)
* man/Makefile.am (sc_option_desc_uppercase): Here.
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/man/Makefile.am b/man/Makefile.am index 44eb3105f..84b585f4f 100644 --- a/man/Makefile.am +++ b/man/Makefile.am @@ -185,7 +185,7 @@ mapped_name = `echo $*|sed 's/^install$$/ginstall/; s/^test$$/[/'` .PHONY: sc_option_desc_uppercase sc_option_desc_uppercase: $(dist_man1_MANS) $(NO_INSTALL_PROGS_DEFAULT:%=%.1) @grep '^\\fB\\-' -A1 *.1 | LC_ALL=C grep '\.1.[A-Z][a-z]' && \ - { echo 1>&2 '$(ME): found initial capitals in --help'; \ + { echo 1>&2 '$@: found initial capitals in --help'; \ exit 1; } || :; .PHONY: sc_man_file_correlation |