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 2CF871384A7 for ; Tue, 28 Jul 2015 22:44:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 307D114024; Tue, 28 Jul 2015 22:44:54 +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 DCAB514024 for ; Tue, 28 Jul 2015 22:44:53 +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 E75AC3408A2 for ; Tue, 28 Jul 2015 22:44:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 843C1AA for ; Tue, 28 Jul 2015 22:44:50 +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: <1438123641.832278b3f3e505f04508f7a2aaafdfb9b7ab4452.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: 832278b3f3e505f04508f7a2aaafdfb9b7ab4452 X-VCS-Branch: master Date: Tue, 28 Jul 2015 22:44:50 +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: e1e16b18-3e75-4699-99d1-5c1c30723501 X-Archives-Hash: aa5ec423d4a7364459cba18e95f8e4e8 commit: 832278b3f3e505f04508f7a2aaafdfb9b7ab4452 Author: Anthony G. Basile gentoo org> AuthorDate: Tue Jul 28 22:47:21 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Tue Jul 28 22:47:21 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=832278b3 Revert "grs/Kernel.py: dereference lib -> lib64, don't clobber it." This reverts commit 75fd42a5a8d40e8ef124526f20989c5a4ee39ce7. grs/Kernel.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grs/Kernel.py b/grs/Kernel.py index 38b8644..c9a99d8 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 -Jchf %s .' % tarball_path + cmd = 'tar -Jcf %s .' % tarball_path Execute(cmd, timeout=600, logfile=self.logfile) os.chdir(cwd)