mirror of
https://github.com/samsonjs/media.git
synced 2026-03-28 09:55:48 +00:00
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
This commit is contained in:
parent
3879a485b7
commit
48dd20ce3a
1 changed files with 1 additions and 1 deletions
|
|
@ -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 \
|
||||
|
|
|
|||
Loading…
Reference in a new issue