mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 15:58:39 +09:00
Make aom_config.asm match upstream
This commit is contained in:
parent
27b580fb16
commit
ba7eca76ea
1 changed files with 2 additions and 2 deletions
|
|
@ -167,8 +167,8 @@ function gen_config_files {
|
|||
local ASM_CONV=ads2gas.pl
|
||||
|
||||
# Generate aom_config.asm.
|
||||
if [[ "$1" == *x64* ]] || [[ "$1" == *ia32* ]]; then
|
||||
egrep "#define [A-Z0-9_]+ [01]" aom_config.h | awk '{print "%define " $2 " " $3}' > aom_config.asm
|
||||
if [[ "$1" == *x64* ]] || [[ "$1" == *ia32* ]] || [[ "$1" == *mingw* ]]; then
|
||||
egrep "#define [A-Z0-9_]+ [01]" aom_config.h | awk '{print $2 " equ " $3}' > aom_config.asm
|
||||
else
|
||||
egrep "#define [A-Z0-9_]+ [01]" aom_config.h | awk '{print $2 " EQU " $3}' | perl $BASE_DIR/$LIBAOM_SRC_DIR/build/make/$ASM_CONV > aom_config.asm
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue