diff options
author | Thomas Graichen <graichen@cvs.openbsd.org> | 1998-03-18 10:45:06 +0000 |
---|---|---|
committer | Thomas Graichen <graichen@cvs.openbsd.org> | 1998-03-18 10:45:06 +0000 |
commit | 45b9277ac4874cac1fb67c2b0f89bec6f78af51d (patch) | |
tree | e1dde5d962ee29681a10add1e798cb2042b1e7b7 /etc/etc.pmax | |
parent | 1ff621f6d9357c68d34b80f7e751dd037ba9afae (diff) |
ugly workaround for the pmax bootblock problem
Diffstat (limited to 'etc/etc.pmax')
-rw-r--r-- | etc/etc.pmax/Makefile.inc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/etc/etc.pmax/Makefile.inc b/etc/etc.pmax/Makefile.inc index 80adfa087f1..56e3e90d4e3 100644 --- a/etc/etc.pmax/Makefile.inc +++ b/etc/etc.pmax/Makefile.inc @@ -1,9 +1,9 @@ -# $OpenBSD: Makefile.inc,v 1.12 1997/10/06 17:56:22 maja Exp $ +# $OpenBSD: Makefile.inc,v 1.13 1998/03/18 10:45:05 graichen Exp $ # etc.pmax/Makefile.inc -- pmax-specific etc Makefile targets .ifdef DESTDIR -snap_md: binutils bsd bsd.nfs bsd.rz0 distrib +snap_md: binutils bsd bsd.nfs bsd.rz0 bootblocks distrib binutils: cd ${DESTDIR} && tar cf - usr/*openbsd* \ @@ -30,6 +30,11 @@ bsd.rz0: cp ${.CURDIR}/../sys/arch/pmax/compile/GENERIC.rz0/bsd \ ${DESTDIR}/snapshot/bsd.rz0 +# XXX this is an really ugly hack until the bootblock source will +# compile again - or even better: someone writes it new +bootblocks: + cp /usr/mdec/rzboot /usr/mdec/bootrz ${DESTDIR}/usr/mdec + distrib: cd ${.CURDIR}/../distrib && make cleandir && \ make && make install |