[efi] Fix dependency list construction in EDK2 header import script

Signed-off-by: Michael Brown <mcb30@ipxe.org>
pull/1082/head
Michael Brown 2023-11-24 22:26:50 +00:00
parent b829b1750d
commit c3dd3168c9
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ sub try_import_file {
chomp;
# Update include lines, and record included files
if ( s/^(\s*\#include\s+)[<\"](\S+)[>\"]/$1<ipxe\/efi\/$2>/ ) {
push @dependencies, $1;
push @dependencies, $2;
}
# Check for BSD licence statement
if ( /^\s*SPDX-License-Identifier: BSD-2-Clause-Patent$/ ) {