diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-05-02 08:45:42 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1997-05-02 08:45:42 +0000 |
commit | 4203cac248946e077204d2d5e08f8acda8291209 (patch) | |
tree | efd3d8b2c6b8eb00127e0e2d84fb336714ced2f5 /distrib/miniroot | |
parent | 5bf0012e01a85064ad686d1943c5db4202b2730a (diff) |
Correct paths to the sys/ tree. Former path happened to work
in the default case, but was really wrong nonetheless.
Diffstat (limited to 'distrib/miniroot')
-rw-r--r-- | distrib/miniroot/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/distrib/miniroot/Makefile b/distrib/miniroot/Makefile index 5eff6bd4ea5..8bafd5535f4 100644 --- a/distrib/miniroot/Makefile +++ b/distrib/miniroot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.9 1997/05/01 11:07:11 niklas Exp $ +# $OpenBSD: Makefile,v 1.10 1997/05/02 08:45:41 niklas Exp $ # $NetBSD: Makefile,v 1.2.4.3 1996/07/04 07:05:32 leo Exp $ # Revision is 2.1 @@ -33,10 +33,10 @@ all: .else bsd: - cd ${.CURDIR}/../../../../sys/arch/${MACHINE}/conf && config GENERIC - cd ${.CURDIR}/../../../../sys/arch/${MACHINE}/compile/GENERIC && \ + cd ${.CURDIR}/../../sys/arch/${MACHINE}/conf && config GENERIC + cd ${.CURDIR}/../../sys/arch/${MACHINE}/compile/GENERIC && \ make clean && make depend && make - cp ${.CURDIR}/../../../../sys/arch/${MACHINE}/compile/GENERIC/bsd bsd + cp ${.CURDIR}/../../sys/arch/${MACHINE}/compile/GENERIC/bsd bsd all: ${CBIN} bsd dd if=/dev/zero of=${REALIMAGE} count=${IMAGESIZE} |