summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/libcurl/Makefile.am10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/libcurl/Makefile.am b/docs/libcurl/Makefile.am
index cdc6e10bc..f828db2b4 100644
--- a/docs/libcurl/Makefile.am
+++ b/docs/libcurl/Makefile.am
@@ -64,15 +64,15 @@ pdf: $(PDFPAGES)
echo "converted $< to $@")
# Make sure each option man page is referenced in the main man page
-TESTS = check-easy check-multi
+TESTS =
LOG_COMPILER = $(PERL)
# The test fails if the log file contains any text
AM_LOG_FLAGS = -p -e 'die "$$_" if ($$_);'
-check-easy: $(srcdir)/gnurl_easy_setopt.3 $(srcdir)/opts/CURLOPT*.3
- OPTS="$$(ls $(srcdir)/opts/CURLOPT*.3 | $(SED) -e 's,^.*/,,' -e 's,\.3$$,,')" && \
+check-easy: $(srcdir)/gnurl_easy_setopt.3 $(srcdir)/opts/GNURLOPT*.3
+ OPTS="$$(ls $(srcdir)/opts/GNURLOPT*.3 | $(SED) -e 's,^.*/,,' -e 's,\.3$$,,')" && \
for opt in $$OPTS; do grep "^\.IP $$opt$$" $(srcdir)/gnurl_easy_setopt.3 >/dev/null || echo Missing $$opt; done > $@
-check-multi: $(srcdir)/gnurl_multi_setopt.3 $(srcdir)/opts/CURLMOPT*.3
- OPTS="$$(ls $(srcdir)/opts/CURLMOPT*.3 | $(SED) -e 's,^.*/,,' -e 's,\.3$$,,')" && \
+check-multi: $(srcdir)/gnurl_multi_setopt.3 $(srcdir)/opts/GNURLMOPT*.3
+ OPTS="$$(ls $(srcdir)/opts/GNURLMOPT*.3 | $(SED) -e 's,^.*/,,' -e 's,\.3$$,,')" && \
for opt in $$OPTS; do grep "^\.IP $$opt$$" $(srcdir)/gnurl_multi_setopt.3 >/dev/null || echo Missing $$opt; done > $@