Commit 7b56bae2 authored by Max Kellermann's avatar Max Kellermann

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

parent 4183416b
...@@ -53,6 +53,9 @@ libid3tag = AutotoolsProject( ...@@ -53,6 +53,9 @@ libid3tag = AutotoolsProject(
'lib/libid3tag.a', 'lib/libid3tag.a',
[ [
'--disable-shared', '--enable-static', '--disable-shared', '--enable-static',
# without this, libid3tag's configure.ac ignores -O* and -f*
'--disable-debugging',
], ],
autogen=True, autogen=True,
) )
...@@ -63,6 +66,9 @@ libmad = AutotoolsProject( ...@@ -63,6 +66,9 @@ libmad = AutotoolsProject(
'lib/libmad.a', 'lib/libmad.a',
[ [
'--disable-shared', '--enable-static', '--disable-shared', '--enable-static',
# without this, libmad's configure.ac ignores -O* and -f*
'--disable-debugging',
], ],
autogen=True, autogen=True,
) )
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment