From 48dd20ce3a6f37fe24f17c671cae7885efb6e4be Mon Sep 17 00:00:00 2001 From: andrewlewis Date: Fri, 15 Jan 2021 12:43:38 +0000 Subject: [PATCH] Follow symlinks in opus build This is not necessary when following the README.md but it is required if libopus is under a symlink (and won't do any harm if it's not symlinked). PiperOrigin-RevId: 351985185 --- extensions/opus/src/main/jni/convert_android_asm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/opus/src/main/jni/convert_android_asm.sh b/extensions/opus/src/main/jni/convert_android_asm.sh index e8aa255842..9c79738439 100755 --- a/extensions/opus/src/main/jni/convert_android_asm.sh +++ b/extensions/opus/src/main/jni/convert_android_asm.sh @@ -34,7 +34,7 @@ while read file; do perl -pi -e "s/-gnu\.S/_gnu\.s/g" "${gnu_file}" rm -f "${file}" fi -done < <(find . -iname '*.s') +done < <(find -L . -iname '*.s') # Generate armopts.s from armopts.s.in sed \