Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: targets/stage1/
Date: Fri, 07 Feb 2014 23:24:56
Message-Id: 1389559701.0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86.dol-sen@gentoo
1 commit: 0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 17 14:56:04 2013 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Sun Jan 12 20:48:21 2014 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=0e1ead9d
7
8 Remove an extra slash in the path.
9
10 ---
11 targets/stage1/stage1-controller.sh | 6 +++---
12 1 file changed, 3 insertions(+), 3 deletions(-)
13
14 diff --git a/targets/stage1/stage1-controller.sh b/targets/stage1/stage1-controller.sh
15 index 3671095..8dbd16b 100755
16 --- a/targets/stage1/stage1-controller.sh
17 +++ b/targets/stage1/stage1-controller.sh
18 @@ -10,11 +10,11 @@ case $1 in
19 cp ${clst_sharedir}/targets/stage1/build.py ${clst_chroot_path}/tmp
20
21 # Setup "ROOT in chroot" dir
22 - install -d ${clst_chroot_path}/${clst_root_path}/etc
23 - install -d ${clst_chroot_path}/${clst_root_path}/etc/portage
24 + install -d ${clst_chroot_path}${clst_root_path}/etc
25 + install -d ${clst_chroot_path}${clst_root_path}/etc/portage
26
27 # Setup make.conf and make.profile link in "ROOT in chroot":
28 - copy_to_chroot ${clst_chroot_path}/etc/portage/make.conf /${clst_root_path}/etc/portage
29 + copy_to_chroot ${clst_chroot_path}/etc/portage/make.conf ${clst_root_path}/etc/portage
30
31 # Enter chroot, execute our build script
32 exec_in_chroot \