diff options
author | 1996-01-29 01:28:45 +0000 | |
---|---|---|
committer | 1996-01-29 01:28:45 +0000 | |
commit | 1986f6ad62b35a730af47acc1ed0417df5a4885e (patch) | |
tree | c15be7ac24834df298ff1a305df3289498cec3a2 | |
parent | from netbsd; move sys_nerr/sys_errlist decls to errno.h (diff) | |
download | wireguard-openbsd-1986f6ad62b35a730af47acc1ed0417df5a4885e.tar.xz wireguard-openbsd-1986f6ad62b35a730af47acc1ed0417df5a4885e.zip |
use ed to repair all termcap database entries that locate the
tabset in the two wrong places.
-rw-r--r-- | share/termcap/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/share/termcap/Makefile b/share/termcap/Makefile index 2bc68db14c5..e820d9ff549 100644 --- a/share/termcap/Makefile +++ b/share/termcap/Makefile @@ -1,5 +1,5 @@ # from: @(#)Makefile 5.14 (Berkeley) 9/15/92 -# $Id: Makefile,v 1.1.1.1 1995/10/18 08:44:48 deraadt Exp $ +# $Id: Makefile,v 1.2 1996/01/29 01:28:45 deraadt Exp $ MAN= termcap.5 @@ -7,7 +7,11 @@ CLEANFILES= termcap.db all: termcap.db termcap.db: termcap.src - cap_mkdb -f termcap ${.ALLSRC} + cat ${.ALLSRC} | sed \ + -e 's,/usr/share/lib/tabset,/usr/share/tabset,g' \ + -e 's,/usr/lib/tabset,/usr/share/tabset,g' \ + > ${.OBJDIR}/fixed + cap_mkdb -f termcap ${.OBJDIR}/fixed realinstall: install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap.db \ @@ -17,5 +21,6 @@ realinstall: install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \ ${DESTDIR}${BINDIR}/misc/map3270 +CLEANFILES+= fixed .include <bsd.prog.mk> |