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 02:43:48
Message-Id: 1409622985.747066e12847a867bc7218597efe7bc22893ef3b.dol-sen@gentoo
1 commit: 747066e12847a867bc7218597efe7bc22893ef3b
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 01:56:25 2014 +0000
6 URL: http://sources.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=747066e1
7
8 Fix a relative path bug
9
10 Conflicts:
11 targets/support/functions.sh
12
13 ---
14 targets/support/functions.sh | 2 +-
15 1 file changed, 1 insertion(+), 1 deletion(-)
16
17 diff --git a/targets/support/functions.sh b/targets/support/functions.sh
18 index c8757d4..0894b35 100755
19 --- a/targets/support/functions.sh
20 +++ b/targets/support/functions.sh
21 @@ -34,7 +34,7 @@ exec_in_chroot(){
22
23 echo "Running ${file_name} in chroot:"
24 echo " ${clst_CHROOT} ${chroot_path} ${destdir}/${file_name}"
25 - ${clst_CHROOT} ${chroot_path} ${destdir}/${file_name} || exit 1
26 + ${clst_CHROOT} ${chroot_path} .${destdir}/${file_name} || exit 1
27
28 delete_from_chroot ${destdir}/${file_name}
29 delete_from_chroot ${destdir}/chroot-functions.sh