diff options
author | Todd T. Fries <todd@cvs.openbsd.org> | 2001-09-07 17:17:45 +0000 |
---|---|---|
committer | Todd T. Fries <todd@cvs.openbsd.org> | 2001-09-07 17:17:45 +0000 |
commit | 57d1eec302ac302ffd9984816a51140432bbe621 (patch) | |
tree | 6649af6fd0c5273b18762b1c4787a595f17976ea | |
parent | 142a22bad94417cc6d6618eab4e64e1c961b3c1f (diff) |
run each 'MAKEDEV all' twice, to catch things that are not rm'ed
(like vme* links for miod)
-rw-r--r-- | regress/etc/MAKEDEV/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/regress/etc/MAKEDEV/Makefile b/regress/etc/MAKEDEV/Makefile index abb70ce392f..a1383724149 100644 --- a/regress/etc/MAKEDEV/Makefile +++ b/regress/etc/MAKEDEV/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.3 2001/09/07 17:04:31 todd Exp $ +# $OpenBSD: Makefile,v 1.4 2001/09/07 17:17:44 todd Exp $ NOMAN= NOPROG= @@ -19,6 +19,7 @@ ${MAKEDEVARCHS}: @exec cp ${ETCSRCDIR}/etc.${.TARGET}/MAKEDEV test.${.TARGET} @exec ${SUDO} chown root.wheel test.${.TARGET} @cd test.${.TARGET}; time ${SUDO} sh ./MAKEDEV all || true; \ + time ${SUDO} sh ./MAKEDEV all || true; \ ( ls -l; ls -l fd/; ls -l altq/ ) | \ awk '/^[bcps]/ {print $$1,$$2,$$3,$$4,$$5,$$6,$$10} \ /^l/ {print $$1,$$2,$$3,$$4,$$5,$$9,$$10,$$11}' |\ |