Ignore:
Timestamp:
07/31/2023 01:44:36 PM (11 months ago)
Author:
Xi Ruoyao <xry111@…>
Branches:
12.0, 12.1, ken/TL2024, ken/tuningfonts, lazarus, plabs/newcss, python3.11, rahul/power-profiles-daemon, renodr/vulkan-addition, trunk, xry111/llvm18
Children:
10b89821
Parents:
c36db1c
git-author:
Xi Ruoyao <xry111@…> (07/29/2023 05:43:02 PM)
git-committer:
Xi Ruoyao <xry111@…> (07/31/2023 01:44:36 PM)
Message:

uefi: Use new kernel config

Fix an issue causing kernel-config.py not to process indented "source"
directive in Kconfig for this.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel-config/kernel-config.py

    rc36db1c r6af847b  
    157157                    config_buf += [line]
    158158                    continue
    159             if line.startswith('source'):
    160                 sub = expand_var(line.split()[1].strip('"'))
     159            if line.startswith('source') or line.startswith('\tsource'):
     160                sub = expand_var(line.strip().split()[1].strip('"'))
    161161                r += load_kconfig(sub)
    162162            elif line.startswith('config') or line.startswith('menuconfig'):
Note: See TracChangeset for help on using the changeset viewer.