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 6B58B1381FA for ; Thu, 5 Jun 2014 16:43:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 41670E09F0; Thu, 5 Jun 2014 16:43: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 D19ECE09F0 for ; Thu, 5 Jun 2014 16:43:53 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C442733FEDF for ; Thu, 5 Jun 2014 16:43:52 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 415BC181A9 for ; Thu, 5 Jun 2014 16:43:51 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1401986584.90485bb12fd5ff2b0a01baaedd371e794b778535.ulm@gentoo> Subject: [gentoo-commits] proj/emacs-tools:emacs-updater commit in: / X-VCS-Repository: proj/emacs-tools X-VCS-Files: ChangeLog emacs-updater X-VCS-Directories: / X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 90485bb12fd5ff2b0a01baaedd371e794b778535 X-VCS-Branch: emacs-updater Date: Thu, 5 Jun 2014 16:43:51 +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: 6457d22a-cff5-49c2-89df-87d17eda5c4a X-Archives-Hash: 4680e56a86a280062c2ec738840696d1 commit: 90485bb12fd5ff2b0a01baaedd371e794b778535 Author: Ulrich Müller gentoo org> AuthorDate: Thu Jun 5 16:43:04 2014 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Thu Jun 5 16:43:04 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/emacs-tools.git;a=commit;h=90485bb1 New variable for path of getopt. * emacs-updater (GETOPT): New variable, path of getopt executable. --- ChangeLog | 4 ++++ emacs-updater | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 86d9d16..642741f 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2014-06-05 Ulrich Müller + + * emacs-updater (GETOPT): New variable, path of getopt executable. + 2014-05-19 Ulrich Müller * emacs-updater: Remove the sitedir action; site-init files are diff --git a/emacs-updater b/emacs-updater index 7b8a965..38c6390 100755 --- a/emacs-updater +++ b/emacs-updater @@ -8,6 +8,7 @@ VERSION=1.13 EMACS=/usr/bin/emacs +GETOPT=/usr/bin/getopt SITELISP=/usr/share/emacs/site-lisp # Default actions @@ -104,7 +105,7 @@ pm_auto() { } # Read in all command-line options and force English output -OPTIONS=$(LC_ALL=C getopt -o a:behmnopP: \ +OPTIONS=$(LC_ALL=C "${GETOPT}" -o a:behmnopP: \ --long action:,batch,color::,colour::,nocolor,nocolour,exact,help,major \ --long orphans,pretend,package-manager:,package-manager-command:,version \ -n 'emacs-updater' -- "$@") \