libtheora: enforce math library (libm.so) linkage (#37891)

This commit is contained in:
QuellynSnead 2023-05-31 14:45:11 -06:00 committed by GitHub
parent f745e49d9a
commit 042dc2e1d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -57,6 +57,7 @@ class AutotoolsBuilder(AutotoolsBuilder):
def configure_args(self):
args = []
args += self.enable_or_disable("doc")
args += ["LIBS=-lm"]
return args
def autoreconf(self, pkg, spec, prefix):