From: Chong Yidong Date: Mon, 8 Oct 2012 04:05:54 +0000 (+0800) Subject: Fix address of the Org-mode daily in Makefile. X-Git-Url: https://code.delx.au/gnu-emacs-elpa/commitdiff_plain/d9697d8a36c5979c94eb27579b11a453b2d78b8b Fix address of the Org-mode daily in Makefile. --- diff --git a/Makefile b/Makefile index f62ab67cc..77920f763 100644 --- a/Makefile +++ b/Makefile @@ -48,8 +48,8 @@ archive-full: archive-tmp org-fetch org-fetch: archive-tmp cd archive-tmp/packages; \ - pkgname=`curl -s http://orgmode.org/pkg/daily/|perl -ne 'push @f, $$1 if m/(org-\d{8})\.tar/; END { @f = sort @f; print "$$f[-1]\n"}'`; \ - wget http://orgmode.org/pkg/daily/$${pkgname}.tar -O $${pkgname}.tar; \ + pkgname=`curl -s http://orgmode.org/elpa/|perl -ne 'push @f, $1 if m/(org-\d{8})\.tar/; END { @f = sort @f; print "$f[-1]\n"}'`; \ + wget -q http://orgmode.org/elpa/${pkgname}.tar -O ${pkgname}.tar; \ if [ -f $${pkgname}.tar ]; then \ tar xf $${pkgname}.tar; \ rm -f $${pkgname}.tar; \