summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2004-01-12 18:11:46 +0000
committermillert <millert@openbsd.org>2004-01-12 18:11:46 +0000
commit1d398dc910906a806f23c4fce2117ced90a04634 (patch)
tree601378e78338e327c548e0be0955d0a443a8d4d8
parentsync (diff)
downloadwireguard-openbsd-1d398dc910906a806f23c4fce2117ced90a04634.tar.xz
wireguard-openbsd-1d398dc910906a806f23c4fce2117ced90a04634.zip
Pass groff the -U flag so that building the index works. OK jmc@
-rw-r--r--usr.bin/vi/docs/USD.doc/vi.ref/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/vi/docs/USD.doc/vi.ref/Makefile b/usr.bin/vi/docs/USD.doc/vi.ref/Makefile
index 63d57355090..572b1e8664f 100644
--- a/usr.bin/vi/docs/USD.doc/vi.ref/Makefile
+++ b/usr.bin/vi/docs/USD.doc/vi.ref/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.3 2001/01/29 01:58:35 niklas Exp $
+# $OpenBSD: Makefile,v 1.4 2004/01/12 18:11:46 millert Exp $
DIR= usd/13.viref
@@ -8,14 +8,14 @@ MACROS= -me
CLEANFILES+=vi.ref.txt index index.so
paper.ps: vi.ref index.so
- soelim vi.ref | ${TBL} | ${ROFF} > ${.TARGET}
+ soelim vi.ref | ${TBL} | ${ROFF} -U > ${.TARGET}
vi.ref.txt: vi.ref index.so
- soelim vi.ref | ${TBL} | groff ${MACROS} -Tascii > $@
+ soelim vi.ref | ${TBL} | groff -U ${MACROS} -Tascii > $@
index.so: vi.ref
# Build index.so, side-effect of building the paper.
- soelim vi.ref | ${TBL} | ${ROFF} > /dev/null
+ soelim vi.ref | ${TBL} | ${ROFF} -U > /dev/null
sed -e 's/MINUSSIGN/\\-/' \
-e 's/DOUBLEQUOTE/""/' \
-e "s/SQUOTE/'/" \