From: Jorge Manuel B. S. Vicetto (jmbsvicetto) Date: Tue, 2 Oct 2012 03:57:42 +0000 (+0000) Subject: Stop passing ${clst_root_path} and /tmp/stage1root to exec_in_chroot. X-Git-Tag: catalyst-2.0.12~11 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f12235d309c823f6e589b1bb0ef98548ae270ef3;p=catalyst.git Stop passing ${clst_root_path} and /tmp/stage1root to exec_in_chroot. --- diff --git a/targets/stage1/stage1-controller.sh b/targets/stage1/stage1-controller.sh index 58da8e41..3671095c 100644 --- a/targets/stage1/stage1-controller.sh +++ b/targets/stage1/stage1-controller.sh @@ -23,7 +23,7 @@ case $1 in ;; preclean) - exec_in_chroot ${clst_sharedir}/targets/${clst_target}/${clst_target}-preclean-chroot.sh /tmp/stage1root || exit 1 + exec_in_chroot ${clst_sharedir}/targets/${clst_target}/${clst_target}-preclean-chroot.sh || exit 1 ;; clean) diff --git a/targets/stage2/stage2-controller.sh b/targets/stage2/stage2-controller.sh index 2192fbc5..69ba7c97 100644 --- a/targets/stage2/stage2-controller.sh +++ b/targets/stage2/stage2-controller.sh @@ -17,7 +17,7 @@ case $1 in ;; preclean) - exec_in_chroot ${clst_sharedir}/targets/${clst_target}/${clst_target}-preclean-chroot.sh ${clst_root_path} + exec_in_chroot ${clst_sharedir}/targets/${clst_target}/${clst_target}-preclean-chroot.sh ;; clean) diff --git a/targets/stage3/stage3-controller.sh b/targets/stage3/stage3-controller.sh index edf42ecd..ff546f8d 100644 --- a/targets/stage3/stage3-controller.sh +++ b/targets/stage3/stage3-controller.sh @@ -16,7 +16,7 @@ case $1 in ;; preclean) - exec_in_chroot ${clst_sharedir}/targets/${clst_target}/${clst_target}-preclean-chroot.sh ${clst_root_path} + exec_in_chroot ${clst_sharedir}/targets/${clst_target}/${clst_target}-preclean-chroot.sh ;; clean)