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 D8464138784 for ; Thu, 31 Jan 2013 04:00:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9769221C029; Thu, 31 Jan 2013 04:00:36 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2A86D21C029 for ; Thu, 31 Jan 2013 04:00:36 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 4073633DBE6 for ; Thu, 31 Jan 2013 04:00:35 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 84C7BE4073 for ; Thu, 31 Jan 2013 04:00:32 +0000 (UTC) From: "Richard Farina" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Richard Farina" Message-ID: <1359604656.e7ea409acb52b43e9ea141c57201f9f87673f7ba.zerochaos@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: targets/stage1/ X-VCS-Repository: proj/catalyst X-VCS-Files: targets/stage1/stage1-chroot.sh X-VCS-Directories: targets/stage1/ X-VCS-Committer: zerochaos X-VCS-Committer-Name: Richard Farina X-VCS-Revision: e7ea409acb52b43e9ea141c57201f9f87673f7ba X-VCS-Branch: master Date: Thu, 31 Jan 2013 04:00:32 +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: 14e312db-1885-4242-a148-9aa54ad2f402 X-Archives-Hash: 8fb7fb7aacd0f1076ac44f4b8ba479fd commit: e7ea409acb52b43e9ea141c57201f9f87673f7ba Author: Rick Farina (Zero_Chaos) gentoo org> AuthorDate: Thu Jan 31 03:57:36 2013 +0000 Commit: Richard Farina gentoo org> CommitDate: Thu Jan 31 03:57:36 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=e7ea409a don't build packages during update_seed when update_seed is run it uses the default catalyst emerge options which causes binary packages to be built which are linked against the seed stage rather than the generated stage. These binary packages can be later used and cause significant and odd issues due to being linked to older libraries. I am passing "--buildpkg=n" for the update_seed runs to prevent this issue and close bug #454184 --- targets/stage1/stage1-chroot.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh index 462ea28..3f628c2 100644 --- a/targets/stage1/stage1-chroot.sh +++ b/targets/stage1/stage1-chroot.sh @@ -28,9 +28,9 @@ if [ -n "${clst_update_seed}" ]; then if [ "${clst_update_seed}" == "yes" ]; then echo "Updating seed stage..." if [ -n "${clst_update_seed_command}" ]; then - clst_root_path=/ run_merge "${clst_update_seed_command}" + clst_root_path=/ run_merge "--buildpkg=n ${clst_update_seed_command}" else - clst_root_path=/ run_merge "--update --deep --newuse --onlydeps gcc" + clst_root_path=/ run_merge "--buildpkg=n --update --deep --newuse --onlydeps gcc" fi elif [ "${clst_update_seed}" != "no" ]; then echo "Invalid setting for update_seed: ${clst_update_seed}"