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 /games/atc/Makefile | |
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 'games/atc/Makefile')
-rw-r--r-- | games/atc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/games/atc/Makefile b/games/atc/Makefile index 62147a1bb1d..b291595c0b7 100644 --- a/games/atc/Makefile +++ b/games/atc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 1996/12/08 15:36:11 downsj Exp $ +# $OpenBSD: Makefile,v 1.4 1997/04/27 20:55:40 millert Exp $ # $NetBSD: Makefile,v 1.9 1995/03/21 15:03:38 cgd Exp $ # @(#)Makefile 8.1 (Berkeley) 5/31/93 @@ -24,7 +24,7 @@ beforeinstall: else \ true ; \ fi - (cd ${.CURDIR}/games; ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} \ + (cd ${.CURDIR}/games; ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} \ -m 400 ${GAMES} ${DESTDIR}/usr/share/games/atc) .include <bsd.prog.mk> |