diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-12-02 03:20:59 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2008-12-02 03:20:59 +0000 |
commit | e77fe03ee41e8897700e5e841bd831c28d568d93 (patch) | |
tree | 4a11a0bd742ab05b4c4f579da4a761925031b32e /distrib/alpha | |
parent | 0dd28ad0baf2f725525aa741d0b78f8686a14200 (diff) |
commit with rdsetroot now accepting the filesystem as a 2nd arg
Diffstat (limited to 'distrib/alpha')
-rw-r--r-- | distrib/alpha/bsd.rd/Makefile | 4 | ||||
-rw-r--r-- | distrib/alpha/common/Makefile.inc | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/distrib/alpha/bsd.rd/Makefile b/distrib/alpha/bsd.rd/Makefile index 42eeabad372..e6d7a8e0bf5 100644 --- a/distrib/alpha/bsd.rd/Makefile +++ b/distrib/alpha/bsd.rd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2008/01/11 10:16:40 espie Exp $ +# $OpenBSD: Makefile,v 1.13 2008/12/02 03:20:57 deraadt Exp $ TOP= ${.CURDIR}/.. @@ -46,7 +46,7 @@ bsd.rd: bsd.rd_unz bsd.rd_unz: bsd ${IMAGE} ${RDSETROOT} cp bsd bsd.rd_unz - ${.OBJDIR}/${RDSETROOT} bsd.rd_unz < ${IMAGE} + ${.OBJDIR}/${RDSETROOT} bsd.rd_unz ${IMAGE} bsd: cd ${.CURDIR}/../../../sys/arch/alpha/conf && config ${RAMDISK} diff --git a/distrib/alpha/common/Makefile.inc b/distrib/alpha/common/Makefile.inc index 74357906d37..d6646a946bb 100644 --- a/distrib/alpha/common/Makefile.inc +++ b/distrib/alpha/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.19 2008/01/11 10:16:40 espie Exp $ +# $OpenBSD: Makefile.inc,v 1.20 2008/12/02 03:20:57 deraadt Exp $ TOP= ${.CURDIR}/.. @@ -70,7 +70,7 @@ bsd.gz: bsd.rd bsd.rd: bsd ${IMAGE} ${RDSETROOT} cp bsd bsd.rd - ${.OBJDIR}/${RDSETROOT} bsd.rd < ${IMAGE} + ${.OBJDIR}/${RDSETROOT} bsd.rd ${IMAGE} bsd: cd ${.CURDIR}/../../../sys/arch/alpha/conf && config ${RAMDISK} |