diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-16 00:59:05 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-01-16 00:59:05 +0000 |
commit | 4ebc8dbbfed2b590724b8dc85a31b482c93b2640 (patch) | |
tree | 9e1acaff0d103f632cbe49da5f2206d3cb9418ac | |
parent | 4cf83686981aa9250117086d5341eeb38c473e14 (diff) |
from netbsd:
Use ${BINOWN} and ${BINGRP} per Arne H. Juul <arnej@ikke.idt.unit.no>
in PR #705. Also, clean up some stuff left over from HP-BSD.
-rw-r--r-- | sys/arch/hp300/stand/Makefile | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/sys/arch/hp300/stand/Makefile b/sys/arch/hp300/stand/Makefile index 1f5776a17b4..1e037c3dbab 100644 --- a/sys/arch/hp300/stand/Makefile +++ b/sys/arch/hp300/stand/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.18 1995/09/23 17:40:54 thorpej Exp $ +# $NetBSD: Makefile,v 1.19 1996/01/15 01:41:37 thorpej Exp $ # @(#)Makefile 8.1 (Berkeley) 6/10/93 @@ -154,22 +154,23 @@ install: mkboot installboot ${ALL} ./mkboot sys_inst sys_inst.lif ./mkboot dboot diskboot.lif ./mkboot tboot tcopy tapeboot.lif - install -c -o bin -g bin -m 555 installboot ${DESTDIR}/usr/mdec - install -c -o bin -g bin -m 444 netbsdboot.lif ${DESTDIR}/usr/mdec/rdboot + install -c -o ${BINOWN} -g ${BINGRP} -m 555 installboot \ + ${DESTDIR}/usr/mdec + install -c -o ${BINOWN} -g ${BINGRP} -m 444 netbsdboot.lif \ + ${DESTDIR}/usr/mdec/rdboot rm -f ${DESTDIR}/usr/mdec/bootrd ln ${DESTDIR}/usr/mdec/rdboot ${DESTDIR}/usr/mdec/bootrd rm -f ${DESTDIR}/usr/mdec/sdboot ln ${DESTDIR}/usr/mdec/rdboot ${DESTDIR}/usr/mdec/sdboot rm -f ${DESTDIR}/usr/mdec/bootsd ln ${DESTDIR}/usr/mdec/sdboot ${DESTDIR}/usr/mdec/bootsd - install -d -m 755 -o bin -g bin ${DESTDIR}/usr/mdec/rbootd - install -c -o bin -g bin -m 444 netboot.lif ${DESTDIR}/usr/mdec/rbootd/SYS_NBOOT - install -c -o bin -g bin -m 444 sys_inst.lif ${DESTDIR}/usr/mdec/rbootd/SYS_INST - install -c -o bin -g bin -m 644 tapeboot.lif ${DESTDIR}/usr/mdec/bootct -# install -o bin -g bin -m 755 -d ${DESTDIR}/sys/hpdist/tp -# install -o bin -g bin -m 444 netbsdboot.lif ${DESTDIR}/sys/hpdist/tp -# install -o bin -g bin -m 444 tapeboot.lif ${DESTDIR}/sys/hpdist/tp -# install -o bin -g bin -m 444 diskboot.lif ${DESTDIR}/sys/hpdist/tp + install -d -m 755 -o ${BINOWN} -g ${BINGRP} ${DESTDIR}/usr/mdec/rbootd + install -c -o ${BINOWN} -g ${BINGRP} -m 444 netboot.lif \ + ${DESTDIR}/usr/mdec/rbootd/SYS_NBOOT + install -c -o ${BINOWN} -g ${BINGRP} -m 444 sys_inst.lif \ + ${DESTDIR}/usr/mdec/rbootd/SYS_INST + install -c -o ${BINOWN} -g ${BINGRP} -m 644 tapeboot.lif \ + ${DESTDIR}/usr/mdec/bootct .include <bsd.prog.mk> .include <bsd.subdir.mk> |