diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-26 00:25:52 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-04-26 00:25:52 +0000 |
commit | 12a262bc38ab5e0ff93561f9faca3d2216898e53 (patch) | |
tree | bbac2e50da143f8fb08be4240f06ccab2c0cb433 /distrib/sparc64/bsd.rd | |
parent | ba94517e8076c5994e4138f52337baa6a3b690aa (diff) |
get runlist from the right place
Diffstat (limited to 'distrib/sparc64/bsd.rd')
-rw-r--r-- | distrib/sparc64/bsd.rd/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/distrib/sparc64/bsd.rd/Makefile b/distrib/sparc64/bsd.rd/Makefile index f9faa5587cb..92eeeedd57d 100644 --- a/distrib/sparc64/bsd.rd/Makefile +++ b/distrib/sparc64/bsd.rd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.5 2002/04/25 22:10:28 deraadt Exp $ +# $OpenBSD: Makefile,v 1.6 2002/04/26 00:25:51 deraadt Exp $ TOP= ${.CURDIR}/.. @@ -7,6 +7,7 @@ IMAGE= ramdisk${REV}.fs CBIN?= instbin LISTS?= ${.CURDIR}/list CRUNCHCONF?= ${.CURDIR}/${CBIN}.conf +UTILS?= ${TOP}/../miniroot MOUNT_POINT= /mnt @@ -127,7 +128,8 @@ ${CBIN}: ${CBIN}.mk ${CBIN}.cache ${CBIN}.c do_files: mtree -def ${MTREE} -p ${MOUNT_POINT}/ -u TOPDIR=${TOP} CURDIR=${.CURDIR} OBJDIR=${.OBJDIR} \ - REV=${REV} TARGDIR=${MOUNT_POINT} sh ${TOP}/common/runlist.sh ${LISTS} + REV=${REV} TARGDIR=${MOUNT_POINT} UTILS=${UTILS} \ + sh ${UTILS}/runlist.sh ${LISTS} clean cleandir: /bin/rm -f core ${IMAGE} ${CBIN} ${CBIN}.mk ${CBIN}*.cache \ |