From b69b6e9cba054213273bb50884c46d6349bd0093 Mon Sep 17 00:00:00 2001 From: CyberLeo Date: Sat, 7 May 2011 04:04:09 -0500 Subject: [PATCH] script/makeworld: keep a copy of the build config files in root, not chroot --- script/makeworld | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/script/makeworld b/script/makeworld index 47fd140..0802b94 100755 --- a/script/makeworld +++ b/script/makeworld @@ -197,6 +197,6 @@ do done # Copy the config files into the target, to keep a record of the build options -[ -f "${world}/config/${CONF}" ] && cp "${world}/config/${CONF}" "${build}/boot/kernel/" -[ -f "${world}/config/make.conf" ] && cp "${world}/config/make.conf" "${build}/etc/" -[ -f "${world}/config/src.conf" ] && cp "${world}/config/src.conf" "${build}/etc/" +[ -f "${world}/config/${CONF}" ] && cp "${world}/config/${CONF}" "${world}/root/boot/kernel/" +[ -f "${world}/config/make.conf" ] && cp "${world}/config/make.conf" "${world}/root/etc/" +[ -f "${world}/config/src.conf" ] && cp "${world}/config/src.conf" "${world}/root/etc/" -- 2.42.0