diff options
author | 1997-10-31 22:20:45 +0000 | |
---|---|---|
committer | 1997-10-31 22:20:45 +0000 | |
commit | 641d8cd8c18420118d828440bca8eac9fa7ced03 (patch) | |
tree | 57e6a71c39a6895a6d9b574c1e4231982249dd4d | |
parent | Final pass through the ramdisk installer. Seems to work correctly. (diff) | |
download | wireguard-openbsd-641d8cd8c18420118d828440bca8eac9fa7ced03.tar.xz wireguard-openbsd-641d8cd8c18420118d828440bca8eac9fa7ced03.zip |
install bootblocks too
-rw-r--r-- | etc/etc.alpha/Makefile.inc | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/etc/etc.alpha/Makefile.inc b/etc/etc.alpha/Makefile.inc index bf1690b905f..2f1e7951a9e 100644 --- a/etc/etc.alpha/Makefile.inc +++ b/etc/etc.alpha/Makefile.inc @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.inc,v 1.9 1997/09/21 11:50:13 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.10 1997/10/31 22:20:45 deraadt Exp $ # etc.alpha/Makefile.inc -- alpha-specific etc Makefile targets .ifdef DESTDIR -snap_md: binutils bsd distrib +snap_md: binutils bsd distrib boot binutils: cd ${DESTDIR} && tar cf - usr/*openbsd* \ @@ -20,4 +20,7 @@ distrib: cd ${.CURDIR}/../distrib && \ make cleandir && make && make install +boot: + cp ${DESTDIR}/usr/mdec/boot ${DESTDIR}/snapshot + .endif # DESTDIR check |