diff options
author | 1996-07-27 22:26:38 +0000 | |
---|---|---|
committer | 1996-07-27 22:26:38 +0000 | |
commit | d9e9f9347e226c21cd5705dc240f7ab9d2434d7f (patch) | |
tree | 1d2170e6336a87b283f8fd3a764698773383c646 | |
parent | refresh screen better; freebsd pr#1425; from fn (diff) | |
download | wireguard-openbsd-d9e9f9347e226c21cd5705dc240f7ab9d2434d7f.tar.xz wireguard-openbsd-d9e9f9347e226c21cd5705dc240f7ab9d2434d7f.zip |
Fix typos on install of include files
-rw-r--r-- | lib/libz/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libz/Makefile b/lib/libz/Makefile index f971806fb0f..cb1d18f0317 100644 --- a/lib/libz/Makefile +++ b/lib/libz/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 1996/07/27 02:39:42 tholo Exp $ +# $OpenBSD: Makefile,v 1.2 1996/07/27 22:26:38 tholo Exp $ LIB= z HDRS= zconf.h zlib.h @@ -10,9 +10,9 @@ NOMAN= noman includes: @cd ${.CURDIR}; for i in $(HDRS); do \ j="cmp -s $$i ${DESTDIR}/usr/include/$$i || \ - install -c -o ${BINOWN} -g ${BINGRP} 0m 444 $$i \ + install -c -o ${BINOWN} -g ${BINGRP} -m 444 $$i \ ${DESTDIR}/usr/include"; \ - echo $$jl \ + echo $$j; \ eval "$$j"; \ done |