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 /games/atc/Makefile | |
parent | 80d0df2cc201ee02470a65b7641a5a80c7ff1ec2 (diff) |
more POSIX chown; Leandro Costa
Diffstat (limited to 'games/atc/Makefile')
-rw-r--r-- | games/atc/Makefile | 4 |
1 files changed, 2 insertions, 2 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 ; \ |