# HG changeset patch # User Bruno Haible # Date 1133530654 0 # Node ID d4112cb80f32ccb0838820b1d6614a92f8ff3aed # Parent e0434cf9e69de84cba422876d2fcb10c92a6c9fa Accept GPLed build tool modules when --lgpl is given. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2005-12-02 Bruno Haible + + * gnulib-tool (func_import): Accept GPLed build tool modules when + --lgpl is given. + * modules/csharpcomp-script: New file. + * modules/csharpcomp: Depend on it. + * modules/javacomp-script: New file. + * modules/javacomp: Depend on it. + Suggested by Simon Josefsson. + 2005-11-29 Paul Eggert * modules/savedir (Depends-on): Add openat. diff --git a/gnulib-tool b/gnulib-tool --- a/gnulib-tool +++ b/gnulib-tool @@ -22,7 +22,7 @@ progname=$0 package=gnulib -cvsdatestamp='$Date: 2005-11-04 18:25:19 $' +cvsdatestamp='$Date: 2005-12-02 13:37:34 $' last_checkin_date=`echo "$cvsdatestamp" | sed -e 's,^\$[D]ate: ,,'` version=`echo "$last_checkin_date" | sed -e 's/ .*$//' -e 's,/,-,g'` @@ -938,7 +938,7 @@ for module in $modules; do license=`func_get_license $module` case $license in - LGPL | 'public domain' | 'unlimited') ;; + LGPL | 'GPLed build tool' | 'public domain' | 'unlimited') ;; *) func_fatal_error "incompatible license on module $module: $license" ;; esac done