diff options
author | Otavio Salvador <otavio@ossystems.com.br> | 2025-01-29 15:45:44 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-01-29 15:45:44 -0300 |
commit | 776f26ec45ce23f7c901ee6a9cd6aa7f8488013c (patch) | |
tree | 67edc005402d0f7cf4eb115063c71b9312eb1047 | |
parent | 85ebd29f11e0061139edc10c827310680d518d61 (diff) | |
parent | a07ff6da170346c122f49c23aa8969960de023d0 (diff) | |
download | meta-freescale-776f26ec45ce23f7c901ee6a9cd6aa7f8488013c.tar.gz |
Merge pull request #2090 from Freescale/backport-2087-to-styhead
[Backport styhead] scripts: avoid pointless LICENSE churn
-rwxr-xr-x | scripts/generate-license-file | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/generate-license-file b/scripts/generate-license-file index 2f4e9766..02b45ab3 100755 --- a/scripts/generate-license-file +++ b/scripts/generate-license-file | |||
@@ -1,5 +1,7 @@ | |||
1 | #!/bin/bash | 1 | #!/bin/bash |
2 | 2 | ||
3 | export LC_ALL=C | ||
4 | |||
3 | # Create or clear the LICENSE file | 5 | # Create or clear the LICENSE file |
4 | echo "# License Information" > LICENSE | 6 | echo "# License Information" > LICENSE |
5 | echo "" >> LICENSE | 7 | echo "" >> LICENSE |
@@ -7,7 +9,7 @@ echo "This file lists all licenses used by recipes in the meta-freescale layer." | |||
7 | echo "" >> LICENSE | 9 | echo "" >> LICENSE |
8 | 10 | ||
9 | # Find all .bb and .inc files and extract license information | 11 | # Find all .bb and .inc files and extract license information |
10 | find . -type f \( -name "*.bb" -o -name "*.inc" \) | while read -r file; do | 12 | find . -type f \( -name "*.bb" -o -name "*.inc" \) | sort | while read -r file; do |
11 | # Extract the license line from each recipe file, if it exists | 13 | # Extract the license line from each recipe file, if it exists |
12 | license_line=$(grep -i "^LICENSE" "$file") | 14 | license_line=$(grep -i "^LICENSE" "$file") |
13 | if [ -n "$license_line" ]; then | 15 | if [ -n "$license_line" ]; then |