Gentoo Archives: gentoo-commits

From: Brian Dolbec <brian.dolbec@×××××.com>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:pending commit in: targets/support/
Date: Tue, 02 Sep 2014 05:54:55
Message-Id: 1409636773.e94bdc1cc1798932812f5a64cf885d4448be2a82.dol-sen@gentoo
1 commit: e94bdc1cc1798932812f5a64cf885d4448be2a82
2 Author: Brian Dolbec <dolsen <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 11 23:54:36 2013 +0000
4 Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
5 CommitDate: Tue Sep 2 05:46:13 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=e94bdc1c
7
8 Fix a relative path bug
9
10 This is part 2 of the bugfix. The first part got committed in:
11
12 commit: 2718211aa28019b8142ae8efe2eefdbb67b6aedb
13 Author: Brian Dolbec <dolsen <AT> gentoo.org> (Sat 11 Jan 2014 08:53:12 PM PST)
14 Subject: Remove some troublesome trailing slashes from paths
15
16 ---
17 targets/support/functions.sh | 2 +-
18 1 file changed, 1 insertion(+), 1 deletion(-)
19
20 diff --git a/targets/support/functions.sh b/targets/support/functions.sh
21 index c8757d4..0894b35 100755
22 --- a/targets/support/functions.sh
23 +++ b/targets/support/functions.sh
24 @@ -34,7 +34,7 @@ exec_in_chroot(){
25
26 echo "Running ${file_name} in chroot:"
27 echo " ${clst_CHROOT} ${chroot_path} ${destdir}/${file_name}"
28 - ${clst_CHROOT} ${chroot_path} ${destdir}/${file_name} || exit 1
29 + ${clst_CHROOT} ${chroot_path} .${destdir}/${file_name} || exit 1
30
31 delete_from_chroot ${destdir}/${file_name}
32 delete_from_chroot ${destdir}/chroot-functions.sh