diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-28 15:15:41 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-28 15:15:41 +0000 |
commit | b23dbd1048b63741bb0d8faf81e0932a68989654 (patch) | |
tree | f289f785ff8d06b43bdb421d35e1451d6a61ccf7 /distrib/sgi | |
parent | 2b23201f01b0081e28e50e81d0bf908c4237c81f (diff) |
the BSD_RD variable is pointless
Diffstat (limited to 'distrib/sgi')
-rw-r--r-- | distrib/sgi/ramdisk/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/distrib/sgi/ramdisk/Makefile b/distrib/sgi/ramdisk/Makefile index a1d91543e08..1c9b9ab0e1d 100644 --- a/distrib/sgi/ramdisk/Makefile +++ b/distrib/sgi/ramdisk/Makefile @@ -1,10 +1,9 @@ -# $OpenBSD: Makefile,v 1.24 2019/04/05 21:08:01 deraadt Exp $ +# $OpenBSD: Makefile,v 1.25 2019/04/28 15:15:39 deraadt Exp $ REV= ${OSrev} TOP= ${.CURDIR}/.. -BSD_RD= bsd.rd IMAGE= mr.fs CBIN?= instbin CRUNCHCONF?= ${CBIN}.conf @@ -28,7 +27,7 @@ ALLBSD= ALLBSDRD= .for IP in ${ALLIP} ALLBSD+= bsd.IP${IP} -ALLBSDRD+= ${BSD_RD}.IP${IP} +ALLBSDRD+= bsd.rd.IP${IP} all: ${ALLBSDRD} .endfor @@ -40,9 +39,9 @@ bsd.IP${IP}: .endif cp -p ${.TOP}/../../sys/arch/sgi/compile/RAMDISK-IP${IP}/obj/bsd bsd.IP${IP} -${BSD_RD}.IP${IP}: ${IMAGE} bsd.IP${IP} - cp bsd.IP${IP} ${BSD_RD}.IP${IP} - rdsetroot ${BSD_RD}.IP${IP} ${IMAGE} +bsd.rd.IP${IP}: ${IMAGE} bsd.IP${IP} + cp bsd.IP${IP} bsd.rd.IP${IP} + rdsetroot bsd.rd.IP${IP} ${IMAGE} .endfor ${IMAGE}: ${CBIN} |