summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJim Meyering <meyering@redhat.com>2012-08-31 20:05:29 +0200
committerJim Meyering <meyering@redhat.com>2012-09-01 21:28:12 +0200
commit552dbe400e763189ab86c82053c69ea7f2775eec (patch)
tree1a8b8fa9f592efe87707c3b465fdbe8b4a4f7251
parente0f95e5b0ecf5ad979df9cc7dff77cc82420c23e (diff)
downloadcoreutils-552dbe400e763189ab86c82053c69ea7f2775eec.tar.xz
maint: check-programs-vs-x: avoid a new syntax-check failure
* cfg.mk (check-programs-vs-x): The new variable, $(all-progs-but-lbracket) contains libstdbuf.so, and it does not have a corresponding .x file, so exempt it.
-rw-r--r--cfg.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/cfg.mk b/cfg.mk
index a3a4d4c12..e5f782de1 100644
--- a/cfg.mk
+++ b/cfg.mk
@@ -230,6 +230,7 @@ all-progs-but-lbracket = $(filter-out [,$(patsubst src/%,%,$(all_programs)))
check-programs-vs-x:
@status=0; \
for p in dummy $(all-progs-but-lbracket); do \
+ case $$p in *.so) continue;; esac; \
test $$p = dummy && continue; \
test $$p = ginstall && p=install || : ; \
test -f $(srcdir)/man/$$p.x \