mirror of
git://sourceware.org/git/libabigail.git
synced 2025-01-22 17:23:05 +00:00
10 lines
353 B
Bash
10 lines
353 B
Bash
|
#!/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
|