diff options
author | 1996-10-06 20:57:05 +0000 | |
---|---|---|
committer | 1996-10-06 20:57:05 +0000 | |
commit | aed0340ffc12b8521902c94ccd0c4145b6304e28 (patch) | |
tree | f2f4ff20fc06806c73d478ef2525e7bb1acba39c | |
parent | use libkern components; from graichen (diff) | |
download | wireguard-openbsd-aed0340ffc12b8521902c94ccd0c4145b6304e28.tar.xz wireguard-openbsd-aed0340ffc12b8521902c94ccd0c4145b6304e28.zip |
Install a symlink from /etc/termcap to the termcap file in /usr/share/misc
for some legacy (and GNU) software to find it
-rw-r--r-- | share/termcap/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/share/termcap/Makefile b/share/termcap/Makefile index 0974a245ecb..802ca99b7d3 100644 --- a/share/termcap/Makefile +++ b/share/termcap/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1996/04/24 23:45:04 mickey Exp $ +# $OpenBSD: Makefile,v 1.4 1996/10/06 20:57:05 tholo Exp $ # from: @(#)Makefile 5.14 (Berkeley) 9/15/92 MAN= termcap.5 @@ -20,6 +20,7 @@ realinstall: ${DESTDIR}${BINDIR}/misc/termcap install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \ ${DESTDIR}${BINDIR}/misc/map3270 + ln -fs ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap CLEANFILES+= fixed |