diff options
author | dm <dm@cvs.openbsd.org> | 1996-06-21 21:20:50 +0000 |
---|---|---|
committer | dm <dm@cvs.openbsd.org> | 1996-06-21 21:20:50 +0000 |
commit | d0ba7a6e757966376d502f6e72b7033334a10ef1 (patch) | |
tree | 90d9e7f926c7f62b0111ab8423715853b729950a /etc | |
parent | 8ff041185f69f32e331249bd66f99a638aecfbc8 (diff) |
missing semi-colon
Diffstat (limited to 'etc')
-rw-r--r-- | etc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/Makefile b/etc/Makefile index a8ef823c14b..ef8a2944089 100644 --- a/etc/Makefile +++ b/etc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.16 1996/06/17 07:19:27 deraadt Exp $ +# $OpenBSD: Makefile,v 1.17 1996/06/21 21:20:49 dm Exp $ TZDIR= /usr/share/zoneinfo LOCALTIME= US/Pacific @@ -128,7 +128,7 @@ distrib-dirs: install -d -o root -g wheel -m 755 ${DESTDIR} -mtree -def mtree/4.4BSD.dist -p ${DESTDIR}/ -u if [ ! -f ${DESTDIR}/usr/src ]; then \ - install -d -o root -g wheel -m 755 ${DESTDIR}/usr/src \ + install -d -o root -g wheel -m 755 ${DESTDIR}/usr/src; \ fi cd ${DESTDIR}; rm -f sys; ln -s usr/src/sys sys |