From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id DEEB5138247 for ; Sun, 12 Jan 2014 01:35:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51C0CE0D54; Sun, 12 Jan 2014 01:35:24 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E8A0DE0D54 for ; Sun, 12 Jan 2014 01:35:23 +0000 (UTC) Received: from big_daddy.dol-sen.ca (S010600222de111ff.vc.shawcable.net [96.49.5.156]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: dolsen) by smtp.gentoo.org (Postfix) with ESMTPSA id 002D933F563; Sun, 12 Jan 2014 01:35:22 +0000 (UTC) From: Brian Dolbec To: gentoo-catalyst@lists.gentoo.org Cc: Brian Dolbec Subject: [gentoo-catalyst] [PATCH] Remove an extra slash in the path. Date: Sat, 11 Jan 2014 17:31:12 -0800 Message-Id: <1389490272-1312-2-git-send-email-dolsen@gentoo.org> X-Mailer: git-send-email 1.8.3.2 In-Reply-To: <1389490272-1312-1-git-send-email-dolsen@gentoo.org> References: <1389469523-29126-2-git-send-email-dolsen@gentoo.org> <1389490272-1312-1-git-send-email-dolsen@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 7cf09b8b-a742-4527-a27a-f2cad5f682e6 X-Archives-Hash: e462cb80d5e71dfd957f7f6060c4c66f --- targets/stage1/stage1-controller.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/targets/stage1/stage1-controller.sh b/targets/stage1/stage1-controller.sh index 3671095..8dbd16b 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 \ -- 1.8.3.2