diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-04-10 16:31:03 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-04-10 16:31:03 +0000 |
commit | 28bcd4d480a24c5af3cccb4710790437a6b06ed7 (patch) | |
tree | 6db315e592720cf2791fa32f935dd6bd54437b91 | |
parent | 80d0df2cc201ee02470a65b7641a5a80c7ff1ec2 (diff) |
more POSIX chown; Leandro Costa
-rw-r--r-- | games/atc/Makefile | 4 | ||||
-rw-r--r-- | games/boggle/Makefile | 4 | ||||
-rw-r--r-- | share/doc/smm/01.setup/3.t | 4 | ||||
-rw-r--r-- | share/man/man8/release.8 | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/games/atc/Makefile b/games/atc/Makefile index 16b1bd00b89..0fc7c1f5ccf 100644 --- a/games/atc/Makefile +++ b/games/atc/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2002/05/31 03:46:32 pjanzen Exp $ +# $OpenBSD: Makefile,v 1.13 2003/04/10 16:31:02 millert Exp $ PROG= atc CFLAGS+=-I${.CURDIR} -I. @@ -17,7 +17,7 @@ beforeinstall: @if [ ! -d ${DESTDIR}/usr/share/games/atc ]; then \ /bin/rm -f ${DESTDIR}/usr/share/games/atc ; \ mkdir -p ${DESTDIR}/usr/share/games/atc ; \ - chown root.wheel ${DESTDIR}/usr/share/games/atc ; \ + chown root:wheel ${DESTDIR}/usr/share/games/atc ; \ chmod 755 ${DESTDIR}/usr/share/games/atc ; \ else \ true ; \ diff --git a/games/boggle/Makefile b/games/boggle/Makefile index a8d2277fdcd..f98c48be830 100644 --- a/games/boggle/Makefile +++ b/games/boggle/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.2 1997/09/21 11:35:34 deraadt Exp $ +# $OpenBSD: Makefile,v 1.3 2003/04/10 16:31:02 millert Exp $ SUBDIR= boggle mkdict mkindex @@ -14,7 +14,7 @@ beforeinstall: rm -f ${DESTDIR}/usr/share/games/boggle/dictindex ${MKINDEX} < ${DESTDIR}/usr/share/games/boggle/dictionary > \ ${DESTDIR}/usr/share/games/boggle/dictindex - chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/games/boggle/dictionary + chown ${BINOWN}:${BINGRP} ${DESTDIR}/usr/share/games/boggle/dictionary chmod 444 ${DESTDIR}/usr/share/games/boggle/dictionary chown ${BINOWN}.${BINGRP} ${DESTDIR}/usr/share/games/boggle/dictindex chmod 444 ${DESTDIR}/usr/share/games/boggle/dictindex diff --git a/share/doc/smm/01.setup/3.t b/share/doc/smm/01.setup/3.t index 45e01c4cd95..710d5388678 100644 --- a/share/doc/smm/01.setup/3.t +++ b/share/doc/smm/01.setup/3.t @@ -1,4 +1,4 @@ -.\" $OpenBSD: 3.t,v 1.2 2001/02/03 08:15:06 niklas Exp $ +.\" $OpenBSD: 3.t,v 1.3 2003/04/10 16:31:02 millert Exp $ .\" .\" Copyright (c) 1980, 1986, 1988, 1993 .\" The Regents of the University of California. All rights reserved. @@ -713,7 +713,7 @@ After copying your version of you should do: .DS \fB#\fP \fIchown \-R root /var/spool/at\fP -\fB#\fP \fIchown \-R uucp.daemon /var/spool/uucp\fP +\fB#\fP \fIchown \-R uucp:daemon /var/spool/uucp\fP \fB#\fP \fIchmod \-R o\-w /var/spool/uucp\fP .DE .PP diff --git a/share/man/man8/release.8 b/share/man/man8/release.8 index 835be01d939..79198103b5a 100644 --- a/share/man/man8/release.8 +++ b/share/man/man8/release.8 @@ -1,4 +1,4 @@ -.\" $OpenBSD: release.8,v 1.27 2003/03/20 19:33:11 millert Exp $ +.\" $OpenBSD: release.8,v 1.28 2003/04/10 16:31:02 millert Exp $ .\" .\" Copyright (c) 2000 Marco S. Hyman .\" @@ -156,7 +156,7 @@ In this instance .Li "make clean" is your friend. .It Li "% su" -.It Li "# mv /bsd /bsd.old && mv bsd / && chown root.wheel /bsd" +.It Li "# mv /bsd /bsd.old && mv bsd / && chown root:wheel /bsd" .It Li "# shutdown -r now" .El .Pp |