summaryrefslogtreecommitdiff
path: root/share/termcap
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-04-27 20:57:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-04-27 20:57:09 +0000
commit56a4230d7d90fb05982c3f285faf62ad514d429a (patch)
tree784f50865a80748c56258016bcdf69d47f3e35b1 /share/termcap
parent5c1f80fa38ed55e3ed266e7cfbf19ea756f32b8d (diff)
COPY -> INSTALL_COPY and STRIP -> INSTALL_STRIP
This fixes namespace problems where STRIP is sometimes used as the name of the strip(1) to use and other times used as the flag to send install(1) when stripping (or not). COPY doesn't have this problem (yet) but was poorly named.
Diffstat (limited to 'share/termcap')
-rw-r--r--share/termcap/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/share/termcap/Makefile b/share/termcap/Makefile
index 802ca99b7d3..e33fa6597d8 100644
--- a/share/termcap/Makefile
+++ b/share/termcap/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.4 1996/10/06 20:57:05 tholo Exp $
+# $OpenBSD: Makefile,v 1.5 1997/04/27 20:56:24 millert Exp $
# from: @(#)Makefile 5.14 (Berkeley) 9/15/92
MAN= termcap.5
@@ -14,11 +14,11 @@ termcap.db: termcap.src
cap_mkdb -f termcap ${.OBJDIR}/fixed
realinstall:
- install ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 termcap.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 ${.CURDIR}/termcap.src \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/termcap.src \
${DESTDIR}${BINDIR}/misc/termcap
- install -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \
+ ${INSTALL} -c -o ${BINOWN} -g ${BINGRP} -m 444 ${.CURDIR}/map3270 \
${DESTDIR}${BINDIR}/misc/map3270
ln -fs ${BINDIR}/misc/termcap ${DESTDIR}/etc/termcap