mirror of
https://gitlab.uni-freiburg.de/opensourcevdi/spice-common
synced 2026-08-12 21:28:47 +00:00
codegen: Fix license name
License reported for MIT was indeed a BSD 3-Clause license, not a MIT one (https://opensource.org/licenses/BSD-3-Clause). Signed-off-by: Frediano Ziglio <fziglio@redhat.com> Acked-by: Uri Lublin <uril@redhat.com>
This commit is contained in:
parent
5faba1e860
commit
36fd7325e5
@ -150,7 +150,7 @@ parser.add_option("--prefix", dest="prefix",
|
||||
parser.add_option("--ptrsize", dest="ptrsize",
|
||||
help="set default pointer size", default="4")
|
||||
parser.add_option("--license", dest="license",
|
||||
help="license to use for generated file(s) (LGPL/MIT)", default="LGPL")
|
||||
help="license to use for generated file(s) (LGPL/BSD)", default="LGPL")
|
||||
|
||||
(options, args) = parser.parse_args()
|
||||
|
||||
@ -194,7 +194,7 @@ if options.license == "LGPL":
|
||||
*/
|
||||
|
||||
"""
|
||||
elif options.license == "MIT":
|
||||
elif options.license == "BSD":
|
||||
license = """/*
|
||||
Copyright (C) 2013 Red Hat, Inc.
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user