diff options
author | Jim Meyering <jim@meyering.net> | 2003-11-06 08:06:58 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2003-11-06 08:06:58 +0000 |
commit | 9c99c1247ab4053321bc3de543a9e007591c7dbf (patch) | |
tree | c95d96a104194abfc8c8fb5f0ab36cb5cb98c686 /man | |
parent | d3d81daf32bf1d52901d06846c3c47841921797d (diff) | |
download | coreutils-9c99c1247ab4053321bc3de543a9e007591c7dbf.tar.xz |
.
Diffstat (limited to 'man')
-rw-r--r-- | man/Makefile.in | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/man/Makefile.in b/man/Makefile.in index e0e24ea0b..3c0f23a55 100644 --- a/man/Makefile.in +++ b/man/Makefile.in @@ -506,13 +506,14 @@ check-x-vs-1: .PHONY: check-programs-vs-x check-programs-vs-x: - test "$(programs)" && : || exit 1 - for p in `$(programs)`; do \ + status=0; \ + for p in dummy `$(programs)`; do \ + test $$p = dummy && continue; \ test $$p = ginstall && p=install || : ; \ test -f $(srcdir)/$$p.x \ - || { echo missing $$p.x 1>&2; missing=1; }; \ + || { echo missing $$p.x 1>&2; status=1; }; \ done; \ - test "$$missing" = 1 && exit 1 || : + exit $$status # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |