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 A4C0A13838B for ; Thu, 11 Sep 2014 03:08:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B9B42E09BB; Thu, 11 Sep 2014 03:08:42 +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 1568FE08E6 for ; Thu, 11 Sep 2014 03:08:41 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 122743401F6 for ; Thu, 11 Sep 2014 03:08:41 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BB7FF5303 for ; Thu, 11 Sep 2014 03:08:39 +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: <1410404737.79f9731e7dd3b632b10ac6a993e61417820fe604.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending commit in: targets/support/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/support/functions.sh X-VCS-Directories: targets/support/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 79f9731e7dd3b632b10ac6a993e61417820fe604 X-VCS-Branch: pending Date: Thu, 11 Sep 2014 03:08:39 +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: 633ad469-dcf6-4d46-b5ea-c2e295b162f2 X-Archives-Hash: e338c8d0a912b2e17438ab86cc77881c Message-ID: <20140911030839.ZCvjPiXV-nwfQLSlQ9zNOEpDTsi-0vLSUbJgT-7tU0U@z> commit: 79f9731e7dd3b632b10ac6a993e61417820fe604 Author: Brian Dolbec gentoo org> AuthorDate: Mon Feb 11 23:54:36 2013 +0000 Commit: Brian Dolbec gmail com> CommitDate: Thu Sep 11 03:05:37 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=79f9731e Fix a relative path bug This is part 2 of the bugfix. The first part got committed in: commit: 2718211aa28019b8142ae8efe2eefdbb67b6aedb Author: Brian Dolbec gentoo.org> (Sat 11 Jan 2014 08:53:12 PM PST) Subject: Remove some troublesome trailing slashes from paths --- targets/support/functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/targets/support/functions.sh b/targets/support/functions.sh index c8757d4..0894b35 100755 --- a/targets/support/functions.sh +++ b/targets/support/functions.sh @@ -34,7 +34,7 @@ exec_in_chroot(){ echo "Running ${file_name} in chroot:" echo " ${clst_CHROOT} ${chroot_path} ${destdir}/${file_name}" - ${clst_CHROOT} ${chroot_path} ${destdir}/${file_name} || exit 1 + ${clst_CHROOT} ${chroot_path} .${destdir}/${file_name} || exit 1 delete_from_chroot ${destdir}/${file_name} delete_from_chroot ${destdir}/chroot-functions.sh