diff options
author | 2019-07-31 11:19:39 +0000 | |
---|---|---|
committer | 2019-07-31 11:19:39 +0000 | |
commit | 65f78d532c2635b30e8ea58e39c05bc1387e7d3c (patch) | |
tree | e506a1e90621c095f64054a0f0c32a8095e332eb | |
parent | drm/amd/display: fix compilation error (diff) | |
download | wireguard-openbsd-65f78d532c2635b30e8ea58e39c05bc1387e7d3c.tar.xz wireguard-openbsd-65f78d532c2635b30e8ea58e39c05bc1387e7d3c.zip |
Fix errors while building bsd.rd & minirootXX.fs on luna88k that is
caused by recent Makefile changes.
Confirmed by me, "sure" deraadt@
-rw-r--r-- | distrib/luna88k/ramdisk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/luna88k/ramdisk/Makefile b/distrib/luna88k/ramdisk/Makefile index cee8a490c43..37ce8e695b0 100644 --- a/distrib/luna88k/ramdisk/Makefile +++ b/distrib/luna88k/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.27 2019/05/03 20:03:58 deraadt Exp $ +# $OpenBSD: Makefile,v 1.28 2019/07/31 11:19:39 aoyama Exp $ FS= miniroot${OSrev}.fs FSSIZE= 8192 @@ -17,7 +17,7 @@ LDSTATIC=-static all: ${FS} -${FS}: vn_up install_files showit vn_down +${FS}: bsd.rd dd if=/dev/zero of=${FS} bs=512 count=${FSSIZE} vnconfig -v ${FS} > vnd disklabel -w `cat vnd` ${FSDISKTYPE} @@ -52,7 +52,7 @@ mr.fs: instbin makefs ${MRMAKEFSARGS} $@ $@.d instbin.mk instbin.cache instbin.c: instbin.conf - crunchgen -D ${.CURDIR}/../../.. -L ${DESTDIR}/usr/lib \ + crunchgen -E -D ${.CURDIR}/../../.. -L ${DESTDIR}/usr/lib \ -c instbin.c -e instbin -m instbin.mk instbin.conf instbin: instbin.mk instbin.cache instbin.c |