libflac: remove no longer needed debug fix

This commit is contained in:
Henrik Grimler 2018-08-12 18:08:24 +02:00 committed by Fredrik Fornwall
parent 5f96222b97
commit 2eaf73bd1c
1 changed files with 0 additions and 10 deletions

View File

@ -5,13 +5,3 @@ TERMUX_PKG_REVISION=4
TERMUX_PKG_SRCURL=http://downloads.xiph.org/releases/flac/flac-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=91cfc3ed61dc40f47f050a109b08610667d73477af6ef36dcad31c31a4a8d53f
TERMUX_PKG_DEPENDS="libogg"
termux_step_pre_configure () {
if [ "$TERMUX_DEBUG" == "true" ]; then
# libflac does removes the flag "-g" from CFLAGS in the configure script
# Not sure why this is done but lets assume there is a good reason for it.
# -g3 is normally passed for a debug build in termux, -g is then removed
# and only "3" is left which isn't a valid option to the compiler.
export CFLAGS="${CFLAGS/-g3/}"
fi
}