summaryrefslogtreecommitdiff
path: root/build-aux/gnupload
diff options
context:
space:
mode:
authorSimon Josefsson <simon@josefsson.org>2010-05-28 08:47:14 +0200
committerSimon Josefsson <simon@josefsson.org>2010-05-28 08:50:07 +0200
commite4b0fe0763c0e87c87e87baf30aa7039e94c20b0 (patch)
tree8e9336525ec654b47a4ebdffbb391bcfa7ac7c57 /build-aux/gnupload
parent79b2b7f8603242b8a2af0d2244f049a5db50e242 (diff)
downloadgnutls-e4b0fe0763c0e87c87e87baf30aa7039e94c20b0.tar.gz
Update gnulib files, use valgrind-tests module, fix syntax-check problems.
Diffstat (limited to 'build-aux/gnupload')
-rwxr-xr-xbuild-aux/gnupload13
1 files changed, 8 insertions, 5 deletions
diff --git a/build-aux/gnupload b/build-aux/gnupload
index c28a5cc13c..68215caf69 100755
--- a/build-aux/gnupload
+++ b/build-aux/gnupload
@@ -1,7 +1,7 @@
#!/bin/sh
# Sign files and upload them.
-scriptversion=2010-02-08.07; # UTC
+scriptversion=2010-05-23.15; # UTC
# Copyright (C) 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software
# Foundation, Inc.
@@ -32,6 +32,8 @@ delete_files=
delete_symlinks=
collect_var=
dbg=
+nl='
+'
usage="Usage: $0 [OPTION]... [CMD] FILE... [[CMD] FILE...]
@@ -109,7 +111,8 @@ Send patches to <automake-patches@gnu.org>."
# Read local configuration file
if test -r "$conffile"; then
echo "$0: Reading configuration file $conffile"
- eval set x "`sed 's/#.*$//;/^$/d' \"$conffile\" | tr '\012\015' ' '` \"\$@\""
+ conf=`sed 's/#.*$//;/^$/d' "$conffile" | tr "\015$nl" ' '`
+ eval set x "$conf \"\$@\""
shift
fi
@@ -185,7 +188,7 @@ done
dprint()
{
- echo "Running $*..."
+ echo "Running $* ..."
}
if $dry_run; then
@@ -249,7 +252,7 @@ echo
if test $# -ne 0; then
for file
do
- echo "Signing $file..."
+ echo "Signing $file ..."
rm -f $file.sig
echo "$passphrase" | $dbg $GPG --passphrase-fd 0 -ba -o $file.sig $file
done
@@ -388,7 +391,7 @@ for dest in $to
do
for file
do
- echo "Uploading $file to $dest..."
+ echo "Uploading $file to $dest ..."
stmt=
files="$file $file.sig"
destdir=`echo $dest | sed 's/[^:]*://'`