From: Paul Eggert Date: Mon, 18 Sep 2006 17:03:47 +0000 (+0000) Subject: * gnulib-tool (avoidlist): Fix typo that broke options like X-Git-Tag: cvs-readonly~1866 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=de37c14fffd3132478c19b8eb4be6026338d974a;p=gnulib.git * gnulib-tool (avoidlist): Fix typo that broke options like --avoid=lock that are used by coreutils bootstrap. --- diff --git a/ChangeLog b/ChangeLog index 23e1c4da3..0b22e3bd6 100644 --- 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 index aae9765da..7a71916fa 100755 --- 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 @@ func_relconcat () shift ;; --avoid=* ) arg=`echo "X$1" | sed -e 's/^X--avoid=//'` - func_append " $arg" + func_append avoidlist " $arg" shift ;; --lgpl ) lgpl=true