diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-27 20:57:09 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-04-27 20:57:09 +0000 |
commit | 56a4230d7d90fb05982c3f285faf62ad514d429a (patch) | |
tree | 784f50865a80748c56258016bcdf69d47f3e35b1 /usr.bin/skey | |
parent | 5c1f80fa38ed55e3ed266e7cfbf19ea756f32b8d (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 'usr.bin/skey')
-rw-r--r-- | usr.bin/skey/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/skey/Makefile b/usr.bin/skey/Makefile index 5111ca7edcd..d7dbf376e51 100644 --- a/usr.bin/skey/Makefile +++ b/usr.bin/skey/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 1996/12/08 14:32:34 downsj Exp $ +# $OpenBSD: Makefile,v 1.9 1997/04/27 20:56:54 millert Exp $ PROG= skey MAN= skey.1 skeyinfo.1 skeyaudit.1 skeyprune.8 @@ -12,11 +12,11 @@ DPADD= ${LIBSKEY} LDADD= -lskey beforeinstall: - ${INSTALL} ${COPY} -m 755 ${.CURDIR}/skeyaudit.sh \ + ${INSTALL} ${INSTALL_COPY} -m 755 ${.CURDIR}/skeyaudit.sh \ ${DESTDIR}${BINDIR}/skeyaudit - ${INSTALL} ${COPY} -m 755 ${.CURDIR}/skeyinfo.sh \ + ${INSTALL} ${INSTALL_COPY} -m 755 ${.CURDIR}/skeyinfo.sh \ ${DESTDIR}${BINDIR}/skeyinfo - ${INSTALL} ${COPY} -m 755 ${.CURDIR}/skeyprune.pl \ + ${INSTALL} ${INSTALL_COPY} -m 755 ${.CURDIR}/skeyprune.pl \ ${DESTDIR}${BINDIR}/skeyprune .include <bsd.prog.mk> |