summaryrefslogtreecommitdiff
path: root/lib/libz
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1997-04-27 20:57:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1997-04-27 20:57:09 +0000
commit56a4230d7d90fb05982c3f285faf62ad514d429a (patch)
tree784f50865a80748c56258016bcdf69d47f3e35b1 /lib/libz
parent5c1f80fa38ed55e3ed266e7cfbf19ea756f32b8d (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/libz')
-rw-r--r--lib/libz/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libz/Makefile b/lib/libz/Makefile
index c3625c96dc6..b1c0015d298 100644
--- a/lib/libz/Makefile
+++ b/lib/libz/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.3 1996/12/08 15:22:35 downsj Exp $
+# $OpenBSD: Makefile,v 1.4 1997/04/27 20:56:20 millert Exp $
LIB= z
HDRS= zconf.h zlib.h
@@ -10,8 +10,8 @@ NOMAN= noman
includes:
@cd ${.CURDIR}; for i in $(HDRS); do \
j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \
- ${INSTALL} ${COPY} -o ${BINOWN} -g ${BINGRP} -m 444 $$i \
- ${DESTDIR}/usr/include"; \
+ ${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 444 \
+ $$i ${DESTDIR}/usr/include"; \
echo $$j; \
eval "$$j"; \
done