summaryrefslogtreecommitdiff
path: root/gnulib-tool
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2007-01-04 18:10:42 +0000
committerPaul Eggert <eggert@cs.ucla.edu>2007-01-04 18:10:42 +0000
commit0794207582b9f263f4eb2f0819bbb0ec4397a760 (patch)
treed3f837f5dc7070ce521cbf836a7095c16ab98da6 /gnulib-tool
parent178d83ccfcd67c663907dce99313c9260f4a4b39 (diff)
downloadgnulib-0794207582b9f263f4eb2f0819bbb0ec4397a760.tar.gz
* gnulib-tool (autoconf_minversion): Take the maximum version number
found, not the minimum. Problem reported by James Youngman.
Diffstat (limited to 'gnulib-tool')
-rwxr-xr-xgnulib-tool4
1 files changed, 2 insertions, 2 deletions
diff --git a/gnulib-tool b/gnulib-tool
index 2ce09a0aca..2bd28747fb 100755
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -22,7 +22,7 @@
progname=$0
package=gnulib
-cvsdatestamp='$Date: 2007-01-03 12:19:04 $'
+cvsdatestamp='$Date: 2007-01-04 18:10:42 $'
last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'`
version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'`
nl='
@@ -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