# HG changeset patch # User Paul Eggert # Date 1158599027 0 # Node ID 6db875979695fcf7fb91b3df9c380f37ef87fc11 # Parent 1ca1035630dd9ea93b7ab0ede87cb85c96a93083 * gnulib-tool (avoidlist): Fix typo that broke options like --avoid=lock that are used by coreutils bootstrap. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-09-18 Paul Eggert + + * gnulib-tool (avoidlist): Fix typo that broke options like + --avoid=lock that are used by coreutils bootstrap. + 2006-09-18 Bruno Haible * gnulib-tool (func_import, func_create_testdir): Use exec tricks to diff --git a/gnulib-tool b/gnulib-tool --- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2006-09-18 15:14:26 $' +cvsdatestamp='$Date: 2006-09-18 17:03:47 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` nl=' @@ -525,7 +525,7 @@ shift ;; --avoid=* ) arg=`echo "X$1" | sed -e 's/^X--avoid=//'` - func_append " $arg" + func_append avoidlist " $arg" shift ;; --lgpl ) lgpl=true