summaryrefslogtreecommitdiff
path: root/build-aux/pmccabe2html
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2022-08-16 00:28:22 +0200
committerSimon Josefsson <simon@josefsson.org>2022-08-16 00:28:22 +0200
commit416872ced15e471f2af2f960ca911da05748a870 (patch)
treefb8d215bfc79168f13554be833665f47b2a14b50 /build-aux/pmccabe2html
parenta333fce3237ccf88065ecdea1e8cb22465bba598 (diff)
downloadgnulib-416872ced15e471f2af2f960ca911da05748a870.tar.gz
pmccabe2html: Doc fix.
* build-aux/pmccabe2html: Don't use reserved _SOURCES namespace. Use AM_V_GEN. Use LC_ALL=C.
Diffstat (limited to 'build-aux/pmccabe2html')
-rw-r--r--build-aux/pmccabe2html10
1 files changed, 5 insertions, 5 deletions
diff --git a/build-aux/pmccabe2html b/build-aux/pmccabe2html
index 20bdf52bed..f29eae3f00 100644
--- a/build-aux/pmccabe2html
+++ b/build-aux/pmccabe2html
@@ -21,12 +21,12 @@
# Typical Invocation is from a Makefile.am:
#
-# CYCLO_SOURCES = ${top_srcdir}/src/*.[ch]
+# CYCLO_SRCS = ${top_srcdir}/src/*.[ch]
#
-# cyclo-$(PACKAGE).html: $(CYCLO_SOURCES)
-# $(PMCCABE) $(CYCLO_SOURCES) \
-# | sort -nr \
-# | $(AWK) -f ${top_srcdir}/build-aux/pmccabe2html \
+# cyclo-$(PACKAGE).html: $(CYCLO_SRCS)
+# $(AM_V_GEN)$(PMCCABE) $(CYCLO_SRCS) \
+# | LC_ALL=C sort -nr \
+# | LC_ALL=C $(AWK) -f ${top_srcdir}/build-aux/pmccabe2html \
# -v lang=html -v name="$(PACKAGE_NAME)" \
# -v vcurl="https://git.savannah.gnu.org/gitweb/?p=$(PACKAGE).git;a=blob;f=%FILENAME%;hb=HEAD" \
# -v url="https://www.gnu.org/software/$(PACKAGE)/" \