bug-coreutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: coreutils-4.5.10 released


From: Jim Meyering
Subject: Re: coreutils-4.5.10 released
Date: Sat, 15 Mar 2003 11:22:42 +0100

Richard A Downing <address@hidden> wrote:
> On Friday 14 Mar 2003 09:47, Jim Meyering wrote:
>
>> Here are the compressed sources:
>>   ftp://ftp.gnu.org/gnu/coreutils/coreutils-4.5.10.tar.gz   (5.8MB)
>>   ftp://ftp.gnu.org/gnu/coreutils/coreutils-4.5.10.tar.bz2  (3.9MB)
>
> Shouldn't this say ftp:/alpha.gnu.org...
>>From where I sit ftp.gnu,org/gnu.coreutils is empty.

Indeed it should.  Thank you for pointing that out!
Fixed for next time.

        * Makefile.cfg (gnu_rel_host): Fix code to match the comment
        so that a version number with a two-digit component can still count
        as an alpha release.  Reported by Richard A Downing.
        (gnu_rel_host): Define in terms of $(RELEASE_TYPE) instead.

Index: Makefile.cfg
===================================================================
RCS file: /fetish/cu/Makefile.cfg,v
retrieving revision 1.13
retrieving revision 1.16
diff -u -p -u -p -r1.13 -r1.16
--- Makefile.cfg        15 Dec 2002 21:40:30 -0000      1.13
+++ Makefile.cfg        15 Mar 2003 10:18:21 -0000      1.16
@@ -1,15 +1,16 @@
 # -*- makefile -*-
 ## Customize Makefile.maint.
 
-# If the version number matches /^\d+.\d+.\d$/ or /[a-z]$/, use alpha.gnu.org.
-# Otherwise, use ftp.gnu.org.
-gnu_rel_host := \
-  $(shell perl -e \
-    'print "$(VERSION)" =~ /^(\d\.\d\.\d|.*[a-z])$$/ ? "alpha" : "ftp"')
+# Use alpha.gnu.org for alpha and beta releases.
+# Use ftp.gnu.org for major releases.
+gnu_ftp_host-alpha = alpha
+gnu_ftp_host-beta = alpha
+gnu_ftp_host-major = ftp
+gnu_rel_host = gnu_ftp_host-$(RELEASE_TYPE)
 
 url_dir_list = \
   ftp://$(gnu_rel_host).gnu.org/gnu/coreutils \
-  http://fetish.sf.net \
+  http://fetish.sf.net
 
 # Files to update automatically.
 wget_files = \




reply via email to

[Prev in Thread] Current Thread [Next in Thread]