diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1998-12-16 19:37:34 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1998-12-16 19:37:34 +0000 |
commit | e1f06951ae75c02c38c41e3eb073b65cc9d6e211 (patch) | |
tree | 3346353341e545a7d20ae8d1737173056d2e92e8 | |
parent | 0f3a241069202eb27e61da38c93c105d45ce3bb5 (diff) |
Add missing ${INSTALL_COPY}
-rw-r--r-- | share/termtypes/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/termtypes/Makefile b/share/termtypes/Makefile index 582f14a41e8..636f344155b 100644 --- a/share/termtypes/Makefile +++ b/share/termtypes/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.4 1998/12/07 20:07:21 millert Exp $ +# $OpenBSD: Makefile,v 1.5 1998/12/16 19:37:33 millert Exp $ # # Take termcap/terminfo master file and generate termcap/terminfo .db files # master: http://www.tuxedo.org/~esr/terminfo/termtypes.master.gz @@ -33,9 +33,9 @@ realinstall: ${DESTDIR}${BINDIR}/misc/terminfo.db ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap.db \ ${DESTDIR}${BINDIR}/misc/termcap.db - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 termcap.src \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap.src \ ${DESTDIR}${BINDIR}/misc/termcap - ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \ ${DESTDIR}${BINDIR}/misc/map3270 ln -fs ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap |