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 18B261384A7 for ; Wed, 29 Jul 2015 00:20:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDB4214015; Wed, 29 Jul 2015 00:20:44 +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 8BE0E14015 for ; Wed, 29 Jul 2015 00:20:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6597E34089A for ; Wed, 29 Jul 2015 00:20:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5C6C7BF for ; Wed, 29 Jul 2015 00:20:40 +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: <1438129394.a1053d8418f8496d0cffec41f57f801708577455.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: a1053d8418f8496d0cffec41f57f801708577455 X-VCS-Branch: master Date: Wed, 29 Jul 2015 00:20:40 +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: 4b930e5f-5794-41dd-b262-d543df525a05 X-Archives-Hash: 842cc8cba7728e3e14b5743671e40cc6 commit: a1053d8418f8496d0cffec41f57f801708577455 Author: Anthony G. Basile gentoo org> AuthorDate: Wed Jul 29 00:23:14 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Wed Jul 29 00:23:14 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=a1053d84 grs/Kernel.py: rsync was clobbering lib -> lib64, not tar. grs/Kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Kernel.py b/grs/Kernel.py index c9a99d8..cec4a5f 100644 --- a/grs/Kernel.py +++ b/grs/Kernel.py @@ -106,7 +106,7 @@ class Kernel(): Execute(cmd) # Copy the newly compiled kernel image and modules to portage configroot - cmd = 'rsync -a %s/ %s' % (image_dir, self.portage_configroot) + cmd = 'rsync -aK %s/ %s' % (image_dir, self.portage_configroot) Execute(cmd, timeout=60, logfile=self.logfile) # Tar up the kernel image and modules and place them in package/linux-images