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 /lib/libtermlib/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 'lib/libtermlib/Makefile')
-rw-r--r-- | lib/libtermlib/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libtermlib/Makefile b/lib/libtermlib/Makefile index be04534d522..bf0ba0c5724 100644 --- a/lib/libtermlib/Makefile +++ b/lib/libtermlib/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.6 1997/01/05 08:22:05 deraadt Exp $ +# $OpenBSD: Makefile,v 1.7 1997/04/27 20:56:17 millert Exp $ # # Copyright (c) 1996 SigmaSoft, Th. Lockert <tholo@sigmasoft.com> # All rights reserved. @@ -68,7 +68,7 @@ binaries.h: mkinfo Capabilities includes: ${HDRS} @for i in ${HDRS}; do \ cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ + ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include; \ done |