mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-08 00:38:39 +09:00
[aom] Filter out CONFIG_EXT_PARTITION_TYPES
aom_dsp_rtcd_defs.pl checks only whether this key is present in the config, not whether it is set to true or not. Our script sets CONFIG_FOO=no for disabled options, while the upstream build system omits them, resulting in extra symbol declarations the build will never define. Work around this by stripping the offending disabled config key if it is disabled.
This commit is contained in:
parent
ba7eca76ea
commit
6940d0df6c
1 changed files with 3 additions and 0 deletions
|
|
@ -104,6 +104,9 @@ fi
|
|||
combined_config="$(echo "$combined_config" | grep -v ARCH_X86=no)"
|
||||
combined_config="$(echo "$combined_config" | grep -v ARCH_X86_64=no)"
|
||||
|
||||
# aom_dsp_rtcd_defs.h checks for definition here, not value.
|
||||
combined_config="$(echo "$combined_config" | grep -v CONFIG_EXT_PARTITION_TYPES=no)"
|
||||
|
||||
# Print out the unique configurations.
|
||||
if [ -n "$out_file" ]; then
|
||||
echo "$combined_config" | sort | uniq > $out_file
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue