Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: targets/stage1/
Date: Fri, 31 Aug 2012 01:57:38
Message-Id: 1346378205.97daf71e380e5e70403358339cde93ebd8d7cad9.jmbsvicetto@gentoo
1 commit: 97daf71e380e5e70403358339cde93ebd8d7cad9
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Fri Aug 31 01:56:45 2012 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Fri Aug 31 01:56:45 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=97daf71e
7
8 We need to quote UPDATE_SEED_STAGE or the test will always return sucess.
9
10 ---
11 targets/stage1/stage1-chroot.sh | 2 +-
12 1 files changed, 1 insertions(+), 1 deletions(-)
13
14 diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh
15 index 641f5c3..2c4daca 100644
16 --- a/targets/stage1/stage1-chroot.sh
17 +++ b/targets/stage1/stage1-chroot.sh
18 @@ -26,7 +26,7 @@ run_merge "--oneshot --nodeps sys-apps/baselayout"
19
20 # Update stage3
21 #UPDATE_SEED_STAGE="yes"
22 -if [ -n ${UPDATE_SEED_STAGE} ]; then
23 +if [ -n "${UPDATE_SEED_STAGE}" ]; then
24 echo "Updating seed stage..."
25 clst_root_path=/ run_merge "--update --deep --newuse @world"
26 fi