summaryrefslogtreecommitdiff
path: root/build-aux/pmccabe2html
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2009-11-06 14:30:03 +0100
committerSimon Josefsson <simon@josefsson.org>2009-11-06 14:30:03 +0100
commit42095643379113b8f7eaf6b32a06521c78887331 (patch)
tree5fdcff7ee10001cb98e01635775a91952e2f1f0f /build-aux/pmccabe2html
parent8c57bd68b7f28db2b7b7998b157b8dbb9e7e82a8 (diff)
downloadgnulib-42095643379113b8f7eaf6b32a06521c78887331.tar.gz
build-aux/pmccabe2html: Disable execute bit. Improve example usage.
Diffstat (limited to 'build-aux/pmccabe2html')
-rw-r--r--[-rwxr-xr-x]build-aux/pmccabe2html8
1 files changed, 4 insertions, 4 deletions
diff --git a/build-aux/pmccabe2html b/build-aux/pmccabe2html
index bc0f6e80b9..ea3e262eae 100755..100644
--- a/build-aux/pmccabe2html
+++ b/build-aux/pmccabe2html
@@ -23,14 +23,14 @@ exec awk -f "$0" "$@"
# Typical Invocation is from a Makefile.am:
#
-# cyclo-libidn.html:
+# cyclo-$(PROJECT).html:
# $(PMCCABE) ${top_srcdir}/lib/*.[ch] \
# | sort -nr \
# | $(AWK) -f ${top_srcdir}/build-aux/pmccabe2html \
# -v lang=html -v name="$(PACKAGE_NAME)" \
-# -v vcurl="http://git.savannah.gnu.org/gitweb/?p=libidn.git;a=blob;f=%FILENAME%;hb=HEAD" \
-# -v url="http://www.gnu.org/software/libidn/" \
-# -v css=../../build-aux/pmccabe.css \
+# -v vcurl="http://git.savannah.gnu.org/gitweb/?p=$(PROJECT).git;a=blob;f=%FILENAME%;hb=HEAD" \
+# -v url="http://www.gnu.org/software/$(PROJECT)/" \
+# -v css=${top_srcdir}/build-aux/pmccabe.css \
# > tmp
# mv tmp $@
#