You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
353 B
10 lines
353 B
#!/bin/sh
|
|
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
# Author: Dodji Seketeli <dodji@redhat.com>
|
|
|
|
#This does the actual re-licensing
|
|
grep '^\.' relicensing-scripts/files-with-lgplv3.txt | while read file
|
|
do
|
|
echo ./relicensing-scripts/replace-spdx-license.sh --from "LGPL-3.0-or-later" --to "Apache-2.0 WITH LLVM-exception" "$file"
|
|
done
|