Gentoo Archives: gentoo-catalyst

From: Brian Dolbec <dolsen@g.o>
To: gentoo-catalyst@l.g.o
Cc: Brian Dolbec <dolsen@g.o>
Subject: [gentoo-catalyst] [PATCH 2/3] Remove an extra slash in the path.
Date: Wed, 18 Dec 2013 01:12:38
Message-Id: 1387329131-25890-3-git-send-email-dolsen@gentoo.org
In Reply to: [gentoo-catalyst] Path addition fixes to prevent multiple slashes in paths. by Brian Dolbec
1 ---
2 targets/stage1/stage1-controller.sh | 2 +-
3 1 file changed, 1 insertion(+), 1 deletion(-)
4
5 diff --git a/targets/stage1/stage1-controller.sh b/targets/stage1/stage1-controller.sh
6 index 3671095..d38ac73 100644
7 --- a/targets/stage1/stage1-controller.sh
8 +++ b/targets/stage1/stage1-controller.sh
9 @@ -14,7 +14,7 @@ case $1 in
10 install -d ${clst_chroot_path}/${clst_root_path}/etc/portage
11
12 # Setup make.conf and make.profile link in "ROOT in chroot":
13 - copy_to_chroot ${clst_chroot_path}/etc/portage/make.conf /${clst_root_path}/etc/portage
14 + copy_to_chroot ${clst_chroot_path}/etc/portage/make.conf ${clst_root_path}/etc/portage
15
16 # Enter chroot, execute our build script
17 exec_in_chroot \
18 --
19 1.8.3.2

Replies

Subject Author
Re: [gentoo-catalyst] [PATCH 2/3] Remove an extra slash in the path. "W. Trevor King" <wking@×××××××.us>