diff options
author | wosch <wosch@FreeBSD.org> | 1998-01-04 10:42:29 +0000 |
---|---|---|
committer | wosch <wosch@FreeBSD.org> | 1998-01-04 10:42:29 +0000 |
commit | d5ec10d34ced81d2b8fdbdf3ebd181dca5ecd0da (patch) | |
tree | caa3e18da9e1f9130585c6ab01dca83f0f2ecc5b /share | |
parent | 0a88d1dcf160db9fde05a70297aaee04032711bf (diff) | |
download | FreeBSD-src-d5ec10d34ced81d2b8fdbdf3ebd181dca5ecd0da.zip FreeBSD-src-d5ec10d34ced81d2b8fdbdf3ebd181dca5ecd0da.tar.gz |
Always copy the source file map3270 during install.
Pointed out by: Bruce
Diffstat (limited to 'share')
-rw-r--r-- | share/termcap/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/share/termcap/Makefile b/share/termcap/Makefile index 7d1bcc4..86bdd74 100644 --- a/share/termcap/Makefile +++ b/share/termcap/Makefile @@ -1,5 +1,5 @@ # @(#)Makefile 8.1 (Berkeley) 6/8/93 -# $Id$ +# $Id: Makefile,v 1.10 1998/01/03 14:13:48 wosch Exp $ # reorder gives an editor command for most common terminals # (in reverse order from n'th to 1'st most commonly used) @@ -8,7 +8,7 @@ MAN5= termcap.5 CLEANFILES+= termcap termcap.db -FILES= termcap termcap.db ${.CURDIR}/map3270 +FILES= termcap termcap.db all: termcap termcap.db @@ -21,6 +21,8 @@ termcap.db: termcap beforeinstall: ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${SHAREMODE} \ ${FILES} ${DESTDIR}${BINDIR}/misc + ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m ${SHAREMODE} \ + ${.CURDIR}/map3270 ${DESTDIR}${BINDIR}/misc etc-termcap: rm -f ${DESTDIR}/etc/termcap |