From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-823337-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 7CA53139538 for <garchives@archives.gentoo.org>; Mon, 27 Jul 2015 20:49:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1C2B8E07D9; Mon, 27 Jul 2015 20:49:36 +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 B4D8EE07D9 for <gentoo-commits@lists.gentoo.org>; Mon, 27 Jul 2015 20:49:35 +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 C97CF340685 for <gentoo-commits@lists.gentoo.org>; Mon, 27 Jul 2015 20:49:34 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 87166AA for <gentoo-commits@lists.gentoo.org>; Mon, 27 Jul 2015 20:49:32 +0000 (UTC) From: "Anthony G. Basile" <blueness@gentoo.org> 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" <blueness@gentoo.org> Message-ID: <1438030332.75fd42a5a8d40e8ef124526f20989c5a4ee39ce7.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: 75fd42a5a8d40e8ef124526f20989c5a4ee39ce7 X-VCS-Branch: master Date: Mon, 27 Jul 2015 20:49:32 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2f9c312f-215d-4828-8bd7-25ed98dc36da X-Archives-Hash: 6e93c44f7e4aa0b360fa1c4e98b3b462 commit: 75fd42a5a8d40e8ef124526f20989c5a4ee39ce7 Author: Anthony G. Basile <blueness <AT> gentoo <DOT> org> AuthorDate: Mon Jul 27 20:52:12 2015 +0000 Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org> CommitDate: Mon Jul 27 20:52:12 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=75fd42a5 grs/Kernel.py: dereference lib -> lib64, don't clobber it. grs/Kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Kernel.py b/grs/Kernel.py index c9a99d8..38b8644 100644 --- a/grs/Kernel.py +++ b/grs/Kernel.py @@ -119,6 +119,6 @@ class Kernel(): os.chdir(image_dir) if os.path.isfile(tarball_path): os.unlink(tarball_path) - cmd = 'tar -Jcf %s .' % tarball_path + cmd = 'tar -Jchf %s .' % tarball_path Execute(cmd, timeout=600, logfile=self.logfile) os.chdir(cwd)