[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1
From: |
Simon Josefsson |
Subject: |
gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1 |
Date: |
Tue, 16 Oct 2007 11:30:14 +0200 |
User-agent: |
Gnus/5.110007 (No Gnus v0.7) Emacs/22.1 (gnu/linux) |
I noticed this for the dummy.c module, which after been imported with
--lgpl said:
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 3 of the License, or
(at your option) any later version.
The dummy.c in gnulib contains the GPLv3 header, and the modules file
says LGPLv2+.
The patch below fixes this, but I'm not sure if there are other
unintended consequences. Comments? Ok to install?
Thanks,
Simon
diff --git a/gnulib-tool b/gnulib-tool
index 1003f4c..b35d736 100755
--- a/gnulib-tool
+++ b/gnulib-tool
@@ -2237,7 +2237,7 @@ func_import ()
# Update license.
sed_transform_lib_file=$sed_transform_lib_file'
s/GNU General/GNU Lesser General/g
- s/version 2\([ ,]\)/version 2.1\1/g
+ s/version [23]\([ ,]\)/version 2.1\1/g
'
fi
fi
- gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1,
Simon Josefsson <=
- Re: gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1, Bruno Haible, 2007/10/16
- Re: gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1, Simon Josefsson, 2007/10/19
- Re: gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1, Bruno Haible, 2007/10/21
- Re: gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1, Simon Josefsson, 2007/10/22
- Re: gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1, Bruno Haible, 2007/10/28
- Re: gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1, Simon Josefsson, 2007/10/29
- Re: gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1, Bruno Haible, 2007/10/29
- Re: gnulib-tool --lgpl doesn't convert gplv3 to lgplv2.1, Simon Josefsson, 2007/10/29