aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Dolbec <dolsen@gentoo.org>2013-12-17 06:56:04 -0800
committerBrian Dolbec <dolsen@gentoo.org>2014-01-12 12:48:21 -0800
commit0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86 (patch)
tree1c2afac2c9082d8a156d246d76e2f8f4316ed7e0
parentRemove some troublesome trailing slashes from paths (diff)
downloadcatalyst-0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86.tar.gz
catalyst-0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86.tar.bz2
catalyst-0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86.zip
Remove an extra slash in the path.
-rwxr-xr-xtargets/stage1/stage1-controller.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/targets/stage1/stage1-controller.sh b/targets/stage1/stage1-controller.sh
index 3671095c..8dbd16b0 100755
--- a/targets/stage1/stage1-controller.sh
+++ b/targets/stage1/stage1-controller.sh
@@ -10,11 +10,11 @@ case $1 in
cp ${clst_sharedir}/targets/stage1/build.py ${clst_chroot_path}/tmp
# Setup "ROOT in chroot" dir
- install -d ${clst_chroot_path}/${clst_root_path}/etc
- install -d ${clst_chroot_path}/${clst_root_path}/etc/portage
+ install -d ${clst_chroot_path}${clst_root_path}/etc
+ install -d ${clst_chroot_path}${clst_root_path}/etc/portage
# Setup make.conf and make.profile link in "ROOT in chroot":
- copy_to_chroot ${clst_chroot_path}/etc/portage/make.conf /${clst_root_path}/etc/portage
+ copy_to_chroot ${clst_chroot_path}/etc/portage/make.conf ${clst_root_path}/etc/portage
# Enter chroot, execute our build script
exec_in_chroot \