[check] Quieten output during checking headers-standalone

Remove the duplication of the compile line and enable shave to replace it
entirely with a "CHECK $header". This should make errors more obvious.
This commit is contained in:
Chris Wilson 2009-05-07 11:36:38 +01:00
parent 84fad4b11b
commit 849bdee199
2 changed files with 4 additions and 1 deletions

View file

@ -69,6 +69,9 @@ lt_unmangle "$lt_output"
output=$last_result
if test -z $V; then
if test $output = "/dev/null"; then
pass_through=1
fi
if test $pass_through -eq 0; then
echo "$Q$output"
fi

View file

@ -23,7 +23,7 @@ uno:
headers-standalone: $(enabled_cairo_headers) $(enabled_cairo_private)
@echo Checking that enabled public/private headers can be compiled standalone
@status=true; for f in $(enabled_cairo_headers) $(enabled_cairo_private); do \
echo $(COMPILE) -o /dev/null $(srcdir)/$$f; \
echo " CHECK $$f"; \
$(COMPILE) -o /dev/null $(srcdir)/$$f || status=false; \
done; $$status
@touch $@