libxcrypt: Disable -Werror (#34013)
This commit is contained in:
parent
409cf185ce
commit
6d0a8f78b2
1 changed files with 3 additions and 1 deletions
|
@ -30,9 +30,11 @@ def url_for_version(self, version):
|
||||||
patch("truncating-conversion.patch", when="@4.4.30")
|
patch("truncating-conversion.patch", when="@4.4.30")
|
||||||
|
|
||||||
def configure_args(self):
|
def configure_args(self):
|
||||||
# Disable test dependency on Python (Python itself depends on libxcrypt).
|
|
||||||
args = [
|
args = [
|
||||||
|
# Disable test dependency on Python (Python itself depends on libxcrypt).
|
||||||
"ac_cv_path_python3_passlib=not found",
|
"ac_cv_path_python3_passlib=not found",
|
||||||
|
# Disable -Werror, which breaks with newer compilers
|
||||||
|
"--disable-werror",
|
||||||
]
|
]
|
||||||
args += self.enable_or_disable("obsolete-api", variant="obsolete_api")
|
args += self.enable_or_disable("obsolete-api", variant="obsolete_api")
|
||||||
return args
|
return args
|
||||||
|
|
Loading…
Reference in a new issue