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 1A919138CE8 for ; Fri, 7 Feb 2014 23:24:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C628BE0D9B; Fri, 7 Feb 2014 23:24:52 +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 51025E0D9D for ; Fri, 7 Feb 2014 23:24:52 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7B3C833F9C3 for ; Fri, 7 Feb 2014 23:24:51 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 47E5018877 for ; Fri, 7 Feb 2014 23:24:50 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1389559701.0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/stage1/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/stage1/stage1-controller.sh X-VCS-Directories: targets/stage1/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86 X-VCS-Branch: master Date: Fri, 7 Feb 2014 23:24:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 45dacfcc-98ef-4ced-b833-cf13808eee69 X-Archives-Hash: 1de1d6d778a3fa4987873982cfce6697 Message-ID: <20140207232450.MCsLd3W7f-6RGJfyXTiRy5FdsP-e9LmE3G3rF7pqfn8@z> commit: 0e1ead9d8d20d29db6aed7eb2d036b9e9210fb86 Author: Brian Dolbec gentoo org> AuthorDate: Tue Dec 17 14:56:04 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Sun Jan 12 20:48:21 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=0e1ead9d Remove an extra slash in the path. --- 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 \