diff options
author | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2014-03-18 14:35:02 +0000 |
---|---|---|
committer | Kenji Aoyama <aoyama@cvs.openbsd.org> | 2014-03-18 14:35:02 +0000 |
commit | 017bb18ef2cc691a653a146a52aca21adf140752 (patch) | |
tree | 444e0121011596aa8bce425ec3518998e136459f | |
parent | 7afd99e8ac4d7fdd6102f498c8ad3ebe6ab2386e (diff) |
Correct the location of 'bsd.rd'.
suggested by miod@
-rw-r--r-- | distrib/luna88k/miniroot/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/luna88k/miniroot/Makefile b/distrib/luna88k/miniroot/Makefile index 99276cea344..791a8b85cf7 100644 --- a/distrib/luna88k/miniroot/Makefile +++ b/distrib/luna88k/miniroot/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.1 2014/02/27 18:55:39 miod Exp $ +# $OpenBSD: Makefile,v 1.2 2014/03/18 14:35:01 aoyama Exp $ TOP= ${.CURDIR}/.. @@ -33,7 +33,7 @@ install_files: bsd.rd boot bsd.rd: install -c -m 555 -o root -g wheel \ - ${.OBJDIR}/../../ramdisk/bsd.rd /mnt/bsd + ${.OBJDIR}/../ramdisk/bsd.rd /mnt/bsd boot: install -c -m 555 -o root -g wheel \ |