summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2009-02-10 20:46:02 +0000
committerEric S. Raymond <esr@thyrsus.com>2009-02-10 20:46:02 +0000
commit5bbc4c62d9408c581deb4c3faa54215028069fd8 (patch)
treebe61fd9f53a26583f1276a7faebafdfc2c1662d7
parent1ead295a145993b23f0be06183513905b59b8c46 (diff)
downloadgpsd-5bbc4c62d9408c581deb4c3faa54215028069fd8.tar.gz
Make the FTP upload production actually work.release-2.38
-rw-r--r--Makefile.am6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am
index 196d6d66..0c843862 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -490,9 +490,9 @@ unstable-makeregress: gpsd
# This is how to ship a release to Berlios incomoing.
# It requires developer access verified via ssh.
#
-upload-ftp:
- sha1 gpsd-$(VERSION).tar.gz >gpsd.sum
- lftp -c "mput gpsd-$(VERSION).tar.gz gpsd.sum" ftp://ftp.berlios.de/incoming
+upload-ftp: dist
+ shasum gpsd-$(VERSION).tar.gz >gpsd.sum
+ lftp -c "open ftp://ftp.berlios.de/incoming; mput gpsd-$(VERSION).tar.gz gpsd.sum"
#
# This is how to tag a release for the SVN repository.