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 3F964138D0B for ; Tue, 7 Jul 2015 00:41:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C9291402C; Tue, 7 Jul 2015 00:41: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 56E7E1402C for ; Tue, 7 Jul 2015 00:41:48 +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 82F15340BD3 for ; Tue, 7 Jul 2015 00:41:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 332FB750 for ; Tue, 7 Jul 2015 00:41:41 +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: <1436229844.d1a7af9843c12553d86a1c9480402e7551c843f7.blueness@gentoo> Subject: [gentoo-commits] proj/grss:master commit in: / X-VCS-Repository: proj/grss X-VCS-Files: grsup X-VCS-Directories: / X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: d1a7af9843c12553d86a1c9480402e7551c843f7 X-VCS-Branch: master Date: Tue, 7 Jul 2015 00:41:41 +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: d7687596-1657-498e-bacd-04838e519fb5 X-Archives-Hash: 3657a73e4fbd3fda8262ec1ecf29ac38 commit: d1a7af9843c12553d86a1c9480402e7551c843f7 Author: Anthony G. Basile gentoo org> AuthorDate: Tue Jul 7 00:44:04 2015 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Tue Jul 7 00:44:04 2015 +0000 URL: https://gitweb.gentoo.org/proj/grss.git/commit/?id=d1a7af98 grsup: don't unnecessarily record in world file. grsup | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/grsup b/grsup index 5362d46..816e982 100755 --- a/grsup +++ b/grsup @@ -115,7 +115,7 @@ def main(): do_install_kernel = False if len(opts) == 0: - args = ['-g', '-K', '-u', '-D', '-q'] + args = ['-1', '-g', '-K', '-u', '-D', '-q'] if len(myfiles) == 0: myfiles = ['@world'] args.extend(myfiles) @@ -127,7 +127,7 @@ def main(): elif o == '-r': if len(myfiles) == 0 or exclude > 1: usage() - args = ['-g', '-K', '-D', '-q'] + args = ['-1', '-g', '-K', '-D', '-q'] args.extend(myfiles) exclude += 1 elif o == '-d':