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 | |
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')
-rw-r--r-- | gnu/libexec/uucp/sample/Makefile | 4 | ||||
-rw-r--r-- | gnu/libexec/uucp/uusched/Makefile | 4 | ||||
-rw-r--r-- | gnu/libexec/uucp/uuto/Makefile | 4 |
3 files changed, 6 insertions, 6 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 diff --git a/gnu/libexec/uucp/uusched/Makefile b/gnu/libexec/uucp/uusched/Makefile index d426a2f7358..da81f334d44 100644 --- a/gnu/libexec/uucp/uusched/Makefile +++ b/gnu/libexec/uucp/uusched/Makefile @@ -1,5 +1,5 @@ # Makefile for uusched -# $Id: Makefile,v 1.1 1995/10/18 08:38:43 deraadt Exp $ +# $Id: Makefile,v 1.2 1997/04/27 20:55:53 millert Exp $ BINDIR= $(bindir) @@ -13,7 +13,7 @@ uusched: uusched.in $(.CURDIR)/uusched.in > $(.TARGET) install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + install ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ uusched ${DESTDIR}${BINDIR} .include <bsd.prog.mk> diff --git a/gnu/libexec/uucp/uuto/Makefile b/gnu/libexec/uucp/uuto/Makefile index 7d93ac6fbf1..be3f3715a84 100644 --- a/gnu/libexec/uucp/uuto/Makefile +++ b/gnu/libexec/uucp/uuto/Makefile @@ -1,5 +1,5 @@ # Makefile for uuto -# $Id: Makefile,v 1.1 1995/10/18 08:38:44 deraadt Exp $ +# $Id: Makefile,v 1.2 1997/04/27 20:55:54 millert Exp $ BINDIR= $(bindir) @@ -13,7 +13,7 @@ uuto: uuto.in $(.CURDIR)/uuto.in > $(.TARGET) install: - install ${COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ + install ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \ uuto ${DESTDIR}${BINDIR} .include <bsd.prog.mk> |