diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2003-04-08 20:42:44 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2003-04-08 20:42:44 +0000 |
commit | d22153cf1346d4982fcc6f824f8cabaaa4b7a836 (patch) | |
tree | d4c1bf935a8552600fe4d0d2fb8047b30eeaecbe /regress/etc/MAKEDEV | |
parent | 70e70feb13fd4f1a1de1a96d316a59390c3ba491 (diff) |
Use POSIX chown semantics (user:group); noted by Leandro Costa
Diffstat (limited to 'regress/etc/MAKEDEV')
-rw-r--r-- | regress/etc/MAKEDEV/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/regress/etc/MAKEDEV/Makefile b/regress/etc/MAKEDEV/Makefile index fe3ebd5207a..a182c23ea22 100644 --- a/regress/etc/MAKEDEV/Makefile +++ b/regress/etc/MAKEDEV/Makefile @@ -1,5 +1,5 @@ -# $OpenBSD: Makefile,v 1.14 2002/12/31 16:22:25 miod Exp $ +# $OpenBSD: Makefile,v 1.15 2003/04/08 20:42:43 millert Exp $ MAKEDEVARCHS+=alpha hp300 hppa i386 mac68k macppc mvme68k mvme88k MAKEDEVARCHS+=mvmeppc sparc sparc64 vax @@ -22,7 +22,7 @@ ${REGRESS_TARGETS}: @exec ${SUDO} rm -rf test.${_T}.${.TARGET} @exec mkdir -p -m 700 test.${_T}.${.TARGET} @exec cp ${ETCSRCDIR}/etc.${.TARGET}/MAKEDEV test.${_T}.${.TARGET} - @exec ${SUDO} chown root.wheel test.${_T}.${.TARGET} + @exec ${SUDO} chown root:wheel test.${_T}.${.TARGET} @cd test.${_T}.${.TARGET}; \ time ${SUDO} sh ./MAKEDEV ${_T} || true; \ time ${SUDO} sh ./MAKEDEV ${_T} || true; \ |