sbc: add -fPIC to CFLAGS

This commit is contained in:
Lukas Rusak 2017-06-14 22:34:25 -07:00
parent a5bf73fd91
commit bd023fc5a2
No known key found for this signature in database
GPG Key ID: 8C310C807E7393A3

View File

@ -30,5 +30,11 @@ PKG_LONGDESC="standalone SBC library"
PKG_IS_ADDON="no"
PKG_AUTORECONF="no"
PKG_CONFIGURE_OPTS_TARGET="--enable-static --disable-shared \
--disable-tools --disable-tester"
PKG_CONFIGURE_OPTS_TARGET="--enable-static \
--disable-shared \
--disable-tools \
--disable-tester"
pre_configure_target() {
CFLAGS="$CFLAGS -fPIC"
}