summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2004-01-12 18:11:47 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2004-01-12 18:11:47 +0000
commit5014809e5b6b4b48e0507ba39c6f3537172383dd (patch)
treebb3ce3e2cea4ad44dab4434d9ac50ecba799cd3a
parentc657ec19561fb889b4e0f5f109f563b745760f8e (diff)
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/'/" \