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 /gnu/libexec/uucp/sample | |
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 'gnu/libexec/uucp/sample')
-rw-r--r-- | gnu/libexec/uucp/sample/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/libexec/uucp/sample/Makefile b/gnu/libexec/uucp/sample/Makefile index 9070559501b..85ff41978af 100644 --- a/gnu/libexec/uucp/sample/Makefile +++ b/gnu/libexec/uucp/sample/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1996/12/08 22:39:32 tholo Exp $ +# $OpenBSD: Makefile,v 1.2 1997/04/27 20:55:52 millert Exp $ FILES= call config dial dialcode passwd port sys NOOBJ= noobj @@ -7,7 +7,7 @@ install: @echo installing ${FILES} @-for i in ${FILES}; do \ if [ ! -f ${DESTDIR}/etc/uucp/$$i ]; then \ - ${INSTALL} ${COPY} -o root -g wheel -m 644 $$i \ + ${INSTALL} ${INSTALL_COPY} -o root -g wheel -m 644 $$i \ ${DESTDIR}/etc/uucp; \ fi; \ done |