changeset 6464:d4112cb80f32

Accept GPLed build tool modules when --lgpl is given.
author Bruno Haible <bruno@clisp.org>
date Fri, 02 Dec 2005 13:37:34 +0000
parents e0434cf9e69d
children 8fc725193330
files ChangeLog gnulib-tool
diffstat 2 files changed, 12 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,13 @@
+2005-12-02  Bruno Haible  <bruno@clisp.org>
+
+	* 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  <eggert@cs.ucla.edu>
 
 	* modules/savedir (Depends-on): Add openat.
--- 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