Mercurial > hg > octave-kai > gnulib-hg
changeset 7142:f846a8f5a5a4
COPYING is not a module.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Tue, 15 Aug 2006 11:52:39 +0000 |
parents | 5d5a420a3a51 |
children | 884255afa5a6 |
files | ChangeLog gnulib-tool |
diffstat | 2 files changed, 8 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2006-08-15 Bruno Haible <bruno@clisp.org> + + * gnulib-tool (func_all_modules, func_verify_module): COPYING is not a + module. + 2006-08-14 Paul Eggert <eggert@cs.ucla.edu> Change copyright notice from LGPL 2 to GPL 2, since that's the
--- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2006-08-10 15:05:20 $' +cvsdatestamp='$Date: 2006-08-15 11:52:39 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` @@ -619,7 +619,7 @@ (cd "$local_gnulib_dir/modules" && ls -1 | sed -e 's,\.diff$,,') fi } \ - | sed -e '/^CVS$/d' -e '/^ChangeLog$/d' -e '/^README$/d' -e '/^TEMPLATE$/d' -e '/^TEMPLATE-TESTS$/d' -e '/~$/d' \ + | sed -e '/^CVS$/d' -e '/^ChangeLog$/d' -e '/^COPYING$/d' -e '/^README$/d' -e '/^TEMPLATE$/d' -e '/^TEMPLATE-TESTS$/d' -e '/~$/d' \ | sed -e '/-tests$/d' \ | LC_ALL=C sort \ | LC_ALL=C uniq @@ -634,6 +634,7 @@ && test -f "$local_gnulib_dir/modules/$module"; }; } \ || test "CVS" = "$module" \ || test "ChangeLog" = "$module" \ + || test "COPYING" = "$module" \ || test "README" = "$module" \ || test "TEMPLATE" = "$module" \ || test "TEMPLATE-TESTS" = "$module"; then