python/build/libs.py: pass --disable-debugging to libid3tag and libmad

This commit is contained in:
Max Kellermann 2018-01-05 07:30:09 +01:00
parent 4183416b3e
commit 7b56bae289
1 changed files with 6 additions and 0 deletions

View File

@ -53,6 +53,9 @@ libid3tag = AutotoolsProject(
'lib/libid3tag.a',
[
'--disable-shared', '--enable-static',
# without this, libid3tag's configure.ac ignores -O* and -f*
'--disable-debugging',
],
autogen=True,
)
@ -63,6 +66,9 @@ libmad = AutotoolsProject(
'lib/libmad.a',
[
'--disable-shared', '--enable-static',
# without this, libmad's configure.ac ignores -O* and -f*
'--disable-debugging',
],
autogen=True,
)