From 06b76511f0652eee67efab8deea32614d97d35d4 Mon Sep 17 00:00:00 2001 From: Ruslan Ermilov Date: Fri, 11 Oct 2002 14:05:19 +0000 Subject: [PATCH] Pass -o option to crunchgen(1) to ensure object files end up in seperate directories. This mostly affects RELENG_4 where not doing so results in ${CHROOTDIR}/usr/src/release being filled with object files, and "srelease" distribution having them in. PR: misc/43825 Prodded by: re (murray) --- release/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/Makefile b/release/Makefile index 832ba2e8f3c..d8591036fbd 100644 --- a/release/Makefile +++ b/release/Makefile @@ -459,9 +459,9 @@ release.5: rm -rf ${j}_crunch mkdir ${j}_crunch .if exists(${.CURDIR}/${TARGET}/${j}_crunch.conf) - cd ${j}_crunch; ${WMAKEENV} crunchgen ${.CURDIR}/${TARGET}/${j}_crunch.conf + cd ${j}_crunch; ${WMAKEENV} crunchgen -o ${.CURDIR}/${TARGET}/${j}_crunch.conf .else - cd ${j}_crunch; ${WMAKEENV} crunchgen ${.CURDIR}/${j}_crunch.conf + cd ${j}_crunch; ${WMAKEENV} crunchgen -o ${.CURDIR}/${j}_crunch.conf .endif cd ${j}_crunch; ${WMAKE} -f ${j}_crunch.mk subclean cd ${.CURDIR}/..; ${TMAKE} build-tools