From 7b56bae289dd82bb24f597f8f98037bb8f3fbaf9 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 5 Jan 2018 07:30:09 +0100 Subject: [PATCH] python/build/libs.py: pass --disable-debugging to libid3tag and libmad --- python/build/libs.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/python/build/libs.py b/python/build/libs.py index 605b04f5d..8653ddb4c 100644 --- a/python/build/libs.py +++ b/python/build/libs.py @@ -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, )