diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-26 02:20:46 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 1997-09-26 02:20:46 +0000 |
commit | c6f107976fe984a68e5960b693bdc2e7ccb9f1dd (patch) | |
tree | e72cd1918ba59b8af1c73c9196630904f7c95a62 /distrib/simpleroot | |
parent | 1e01a7370ef7737d521447e5a56d914c2262f00a (diff) |
Don't specify disktype to newfs when we already have a label.
Diffstat (limited to 'distrib/simpleroot')
-rw-r--r-- | distrib/simpleroot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/simpleroot/Makefile b/distrib/simpleroot/Makefile index 3a43b3b1699..0c44dcb4690 100644 --- a/distrib/simpleroot/Makefile +++ b/distrib/simpleroot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.8 1997/05/15 12:33:06 graichen Exp $ +# $OpenBSD: Makefile,v 1.9 1997/09/26 02:20:44 millert Exp $ # Revision is 2.1 REV= 21 @@ -35,7 +35,7 @@ all: .ifdef BOOT_DISKLABEL disklabel -B ${BOOT_DISKLABEL} ${VND} ${DISKTYPE} .endif - newfs ${NEWFSOPTS} ${VND_RDEV} ${DISKTYPE} + newfs ${NEWFSOPTS} ${VND_RDEV} mount ${VND_DEV} ${MOUNT_POINT} .ifdef BOOT_INSTALLBOOT /usr/mdec/installboot -v ${MOUNT_POINT}/boot ${BOOT_INSTALLBOOT} ${VND} |