diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-01-14 23:40:02 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-01-14 23:40:02 +0000 |
commit | 31dd53ceb043530f54b80723cab9551bd607a22f (patch) | |
tree | 97ab83ecec28e05d3f4f01de6ea8d67d62ffdd1b /usr.bin/vi | |
parent | dc9c0fd3e333b97ec789b0681bff760f5db1e0f8 (diff) |
Comment out reference to index.so when we are building index.so itself.
With changes by jmc@
Diffstat (limited to 'usr.bin/vi')
-rw-r--r-- | usr.bin/vi/docs/USD.doc/vi.ref/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/vi/docs/USD.doc/vi.ref/Makefile b/usr.bin/vi/docs/USD.doc/vi.ref/Makefile index 572b1e8664f..326ef69ba08 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.4 2004/01/12 18:11:46 millert Exp $ +# $OpenBSD: Makefile,v 1.5 2004/01/14 23:40:01 millert Exp $ DIR= usd/13.viref @@ -15,7 +15,8 @@ vi.ref.txt: vi.ref index.so index.so: vi.ref # Build index.so, side-effect of building the paper. - soelim vi.ref | ${TBL} | ${ROFF} -U > /dev/null + sed '/^\.so index.so/s/^/.\\\" /' vi.ref | soelim | \ + ${TBL} | ${ROFF} -U > /dev/null sed -e 's/MINUSSIGN/\\-/' \ -e 's/DOUBLEQUOTE/""/' \ -e "s/SQUOTE/'/" \ |