diff options
author | Olof Johansson <olof.johansson@axis.com> | 2016-11-15 20:10:39 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-23 11:02:29 +0000 |
commit | 5f08d4ea1b4ddf04d7f1d8aa38c0dac9b1af44bc (patch) | |
tree | 83cff83c883456d2dada1746a2785033b9617158 | |
parent | fe694f9713595fc5f83c47111f03fc8a0a222f14 (diff) | |
download | openembedded-core-5f08d4ea1b4ddf04d7f1d8aa38c0dac9b1af44bc.tar.gz openembedded-core-5f08d4ea1b4ddf04d7f1d8aa38c0dac9b1af44bc.tar.bz2 openembedded-core-5f08d4ea1b4ddf04d7f1d8aa38c0dac9b1af44bc.zip |
licenses.conf: Fix variable name in comments (FOSS_NO_COPYRIGHT)
A FOSSology related variable was renamed from FOSS_COPRYIGHT to
FOSS_NO_COPYRIGHT, but the comment block describing the variable
in licenses.conf was missed.
Besides fixing this, this change also removes a redundant comment
about where the variable is defined (it's right there! ;-)).
Signed-off-by: Olof Johansson <olofjn@axis.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
-rw-r--r-- | meta/conf/licenses.conf | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/meta/conf/licenses.conf b/meta/conf/licenses.conf index 9917c40e19..d210a0e940 100644 --- a/meta/conf/licenses.conf +++ b/meta/conf/licenses.conf @@ -133,11 +133,10 @@ DATA_LICENSE = "CC0-1.0" # You can set option to control if the copyright information will be skipped # during the identification process. # -# It is defined as [FOSS_COPYRIGHT] in ./meta/conf/licenses.conf. -# FOSS_COPYRIGHT = "true" +# FOSS_NO_COPYRIGHT = "true" # NO copyright will be processed. That means only license information will be # identified and output to SPDX file -# FOSS_COPYRIGHT = "false" +# FOSS_NO_COPYRIGHT = "false" # Copyright will be identified and output to SPDX file along with license # information. The process will take more time than not processing copyright # information. |