diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-07-27 22:26:39 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-07-27 22:26:39 +0000 |
commit | 875b571fe1880c3b8b8aa8db51106e1430af4eb0 (patch) | |
tree | 5207f2a15c5f6addb8280b344c1289e9205b0dbc /lib/libz/Makefile | |
parent | 37716357cfccaf74d09fd589d7cb3d59948f1906 (diff) |
Fix typos on install of include files
Diffstat (limited to 'lib/libz/Makefile')
-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 |