This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "GNU Automake".
http://git.sv.gnu.org/gitweb/?p=automake.git;a=commitdiff;h=6130d102ef0c70a60c231bceefc5a40a8908ade0 The branch, master has been updated via 6130d102ef0c70a60c231bceefc5a40a8908ade0 (commit) from 0ceb06bf5497507cd772b3018a92c106deecf808 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 6130d102ef0c70a60c231bceefc5a40a8908ade0 Author: Jim Meyering <[EMAIL PROTECTED]> Date: Tue Dec 18 17:49:49 2007 +0100 * lib/gnupload (GPG): Don't use an absolute path. This reverts part of the 2004-01-28 change. If the hypothetical cracker ever gets in to my (or any developer's) system with sufficient privilege to modify the contents of directories in my PATH (or change my PATH altogether), they can already compromise my development work in so many ways that using such absolute names in gnupload gives reduced functionality with no added security. ----------------------------------------------------------------------- Summary of changes: ChangeLog | 5 +++++ lib/gnupload | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 191b99d..b967dcc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-12-18 Jim Meyering <[EMAIL PROTECTED]> + + * lib/gnupload (GPG): Don't use an absolute path. + This reverts part of the 2004-01-28 change. + 2007-12-08 Ralf Wildenhues <[EMAIL PROTECTED]> * lib/Automake/FileUtils.pm (open_quote): New function. diff --git a/lib/gnupload b/lib/gnupload index c3a6a42..2e3c801 100755 --- a/lib/gnupload +++ b/lib/gnupload @@ -1,7 +1,7 @@ #!/bin/sh # Sign files and upload them. -scriptversion=2007-06-30.12 +scriptversion=2007-12-18.17 # Copyright (C) 2004, 2005, 2006, 2007 Free Software Foundation # @@ -22,7 +22,7 @@ scriptversion=2007-06-30.12 set -e -GPG='/usr/bin/gpg --batch --no-tty' +GPG='gpg --batch --no-tty' to= usage="Usage: $0 [OPTIONS]... FILES... hooks/post-receive -- GNU Automake