From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52448) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1goSrc-0003vq-Im for qemu-devel@nongnu.org; Tue, 29 Jan 2019 07:51:42 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1goSrW-00087b-5F for qemu-devel@nongnu.org; Tue, 29 Jan 2019 07:51:40 -0500 Received: from userp2130.oracle.com ([156.151.31.86]:33968) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1goSrQ-00085e-8T for qemu-devel@nongnu.org; Tue, 29 Jan 2019 07:51:32 -0500 References: <1548327184-13416-1-git-send-email-thuth@redhat.com> From: Liam Merwick Message-ID: <4aa7084c-3134-ec7b-a3ac-556a5ba9a7b7@oracle.com> Date: Tue, 29 Jan 2019 12:51:20 +0000 MIME-Version: 1.0 In-Reply-To: <1548327184-13416-1-git-send-email-thuth@redhat.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-GB Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] target/m68k: Fix LGPL information in the file headers List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: liam.merwick@oracle.com, thuth@redhat.com On 24/01/2019 10:53, Thomas Huth wrote: > It's either "GNU *Library* General Public version 2" or "GNU Lesser > General Public version *2.1*", but there was no "version 2.0" of the Should the word "License" be after both instances of "Public" above ? > "Lesser" library. So assume that version 2.1 is meant here. '"Lesser" library.' -> '"Lesser" license.' ? > Also some files mentioned the GPL instead of the LGPL after declaring > that the files are licensed under the LGPL, so change these spots to > use LGPL, too. > > Signed-off-by: Thomas Huth changes below LGTM Reviewed-by: Liam Merwick > --- > linux-user/m68k/target_cpu.h | 4 ++-- > linux-user/m68k/target_structs.h | 2 +- > target/m68k/cpu.h | 4 ++-- > target/m68k/fpu_helper.c | 4 ++-- > target/m68k/gdbstub.c | 2 +- > target/m68k/helper.c | 4 ++-- > target/m68k/op_helper.c | 2 +- > target/m68k/translate.c | 4 ++-- > 8 files changed, 13 insertions(+), 13 deletions(-) > > diff --git a/linux-user/m68k/target_cpu.h b/linux-user/m68k/target_cpu.h > index 611df06..7a26f3c 100644 > --- a/linux-user/m68k/target_cpu.h > +++ b/linux-user/m68k/target_cpu.h > @@ -7,12 +7,12 @@ > * This library 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 2 of the License, or (at your option) any later version. > + * version 2.1 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > - * General Public License for more details. > + * Lesser General Public License for more details. > * > * You should have received a copy of the GNU Lesser General Public > * License along with this library; if not, see . > diff --git a/linux-user/m68k/target_structs.h b/linux-user/m68k/target_structs.h > index a003676..e373d48 100644 > --- a/linux-user/m68k/target_structs.h > +++ b/linux-user/m68k/target_structs.h > @@ -6,7 +6,7 @@ > * This library 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 2 of the License, or (at your option) any later version. > + * version 2.1 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > diff --git a/target/m68k/cpu.h b/target/m68k/cpu.h > index b288a38..f154565 100644 > --- a/target/m68k/cpu.h > +++ b/target/m68k/cpu.h > @@ -7,12 +7,12 @@ > * This library 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 2 of the License, or (at your option) any later version. > + * version 2.1 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > - * General Public License for more details. > + * Lesser General Public License for more details. > * > * You should have received a copy of the GNU Lesser General Public > * License along with this library; if not, see . > diff --git a/target/m68k/fpu_helper.c b/target/m68k/fpu_helper.c > index 6eeffdf..b35489b 100644 > --- a/target/m68k/fpu_helper.c > +++ b/target/m68k/fpu_helper.c > @@ -7,12 +7,12 @@ > * This library 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 2 of the License, or (at your option) any later version. > + * version 2.1 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > - * General Public License for more details. > + * Lesser General Public License for more details. > * > * You should have received a copy of the GNU Lesser General Public > * License along with this library; if not, see . > diff --git a/target/m68k/gdbstub.c b/target/m68k/gdbstub.c > index 99e5be8..fd2bb46 100644 > --- a/target/m68k/gdbstub.c > +++ b/target/m68k/gdbstub.c > @@ -7,7 +7,7 @@ > * This library 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 2 of the License, or (at your option) any later version. > + * version 2.1 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > diff --git a/target/m68k/helper.c b/target/m68k/helper.c > index 917d46e..3e26d33 100644 > --- a/target/m68k/helper.c > +++ b/target/m68k/helper.c > @@ -7,12 +7,12 @@ > * This library 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 2 of the License, or (at your option) any later version. > + * version 2.1 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > - * General Public License for more details. > + * Lesser General Public License for more details. > * > * You should have received a copy of the GNU Lesser General Public > * License along with this library; if not, see . > diff --git a/target/m68k/op_helper.c b/target/m68k/op_helper.c > index 8d09ed9..76f4399 100644 > --- a/target/m68k/op_helper.c > +++ b/target/m68k/op_helper.c > @@ -6,7 +6,7 @@ > * This library 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 2 of the License, or (at your option) any later version. > + * version 2.1 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > diff --git a/target/m68k/translate.c b/target/m68k/translate.c > index 752e46e..6217a68 100644 > --- a/target/m68k/translate.c > +++ b/target/m68k/translate.c > @@ -7,12 +7,12 @@ > * This library 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 2 of the License, or (at your option) any later version. > + * version 2.1 of the License, or (at your option) any later version. > * > * This library is distributed in the hope that it will be useful, > * but WITHOUT ANY WARRANTY; without even the implied warranty of > * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU > - * General Public License for more details. > + * Lesser General Public License for more details. > * > * You should have received a copy of the GNU Lesser General Public > * License along with this library; if not, see . >