bug-gnulib
[Top][All Lists]
Advanced

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

Re: coreutils bootstrapping issue on non-GNU platforms


From: Paul Eggert
Subject: Re: coreutils bootstrapping issue on non-GNU platforms
Date: Thu, 04 Jan 2007 10:11:39 -0800
User-agent: Gnus/5.1008 (Gnus v5.10.8) Emacs/21.4 (gnu/linux)

"James Youngman" <address@hidden> writes:

> Doesn't the previous code actually produce the _maximum_ version (that
> is, with sort .. | tail -1)?

Yes, and thanks for catching that.  Hmm, nobody has used this since
December 30?  Anyway, I installed this:

2007-01-04  Paul Eggert  <address@hidden>

        * gnulib-tool (autoconf_minversion): Take the maximum version number
        found, not the minimum.  Problem reported by James Youngman.

--- gnulib-tool 3 Jan 2007 12:19:04 -0000       1.207
+++ gnulib-tool 4 Jan 2007 18:10:33 -0000
@@ -699,7 +699,7 @@ func_ln_if_changed ()
     if test -n "$prereqs"; then
       autoconf_minversion=`
         for version in $prereqs; do echo $version; done |
-        LC_ALL=C sort -nu | sed 1q
+        LC_ALL=C sort -nru | sed 1q
       `
     fi
   fi




reply via email to

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