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 EA0A613949B for ; Sat, 25 Jul 2015 22:36:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 48070E086B; Sat, 25 Jul 2015 22:36:48 +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 F14BCE086B for ; Sat, 25 Jul 2015 22:36:47 +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 D9C8434095B for ; Sat, 25 Jul 2015 22:36:46 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B03710E for ; Sat, 25 Jul 2015 22:36:44 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1437863902.b37e8b5ccd90b572871ca5714688125c7e24ce47.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: grs/ X-VCS-Repository: proj/grss X-VCS-Files: grs/Kernel.py X-VCS-Directories: grs/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: b37e8b5ccd90b572871ca5714688125c7e24ce47 X-VCS-Branch: master Date: Sat, 25 Jul 2015 22:36:44 +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: f7c5c832-477c-406c-92d3-6d19a718e28f X-Archives-Hash: 118a7e42a0e76faea74d7c429c1dea9c commit: b37e8b5ccd90b572871ca5714688125c7e24ce47 Author: Anthony G. Basile gentoo org> AuthorDate: Sat Jul 25 22:38:11 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sat Jul 25 22:38:22 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=b37e8b5c grs/Kernel.py: modules directory should be $(get_libdir) grs/Kernel.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/grs/Kernel.py b/grs/Kernel.py index c04f5a5..c9a99d8 100644 --- a/grs/Kernel.py +++ b/grs/Kernel.py @@ -64,6 +64,8 @@ class Kernel(): image_dir = os.path.join(self.kernelroot, gentoo_version) boot_dir = os.path.join(image_dir, 'boot') modprobe_dir = os.path.join(image_dir, 'etc/modprobe.d') + # TODO: modules_dir really needs $(get_libdir), eg /lib64. + # For example, this breaks on amd64 multilib. modules_dir = os.path.join(image_dir, 'lib/modules') # Remove any old kernel image directory and create a boot directory.