# HG changeset patch # User Franz Glasner # Date 1726056186 -7200 # Node ID 3ae0d41945a7d8c8f81ff0e7938ed9c04f61edf6 # Parent 3afebbaf613b9f342a745ffbc74293a06eb4d337 Use "hg -i" instead of "hg -q" to retrieve the global revision diff -r 3afebbaf613b -r 3ae0d41945a7 Makefile --- a/Makefile Wed Sep 11 13:43:09 2024 +0200 +++ b/Makefile Wed Sep 11 14:03:06 2024 +0200 @@ -62,7 +62,7 @@ MANPAGES8= ${:!${LS} -1 "${.CURDIR}/docs/man/man8"!} HGCANONICALPATH?= default -HGREVISION= ${:!hg id -R "${SRC}" -q!} +HGREVISION= ${:!hg id -R "${SRC}" -i!} HGDATE= ${:!hg log -R "${SRC}" -r "${HGREVISION:S/+//}" --template '{date|isodatesec}'!} HGAUTHOR= ${:!hg log -R "${SRC}" -r "${HGREVISION:S/+//}" --template '{author|person}' | ${TR} ' ' '+'!} HGPATH= ${:!hg --config ui.paginate=never path -R "${SRC}" ${HGCANONICALPATH} || echo "file://\$$\(hg root)"!}