Merge pull request #115 from lrusak/vdr

Thanks :)
This commit is contained in:
Christian Hewitt 2016-04-06 12:03:41 +04:00
commit 30e18b3962
3 changed files with 3 additions and 2 deletions

View File

@ -36,7 +36,7 @@ PKG_AUTORECONF="no"
pre_configure_target() { pre_configure_target() {
export CFLAGS="$CFLAGS -fPIC" export CFLAGS="$CFLAGS -fPIC"
export CXXFLAGS="$CXXFLAGS -fPIC" export CXXFLAGS="$CXXFLAGS -fPIC"
export LDFLAGS="$LDFLAGS -fPIC" export LDFLAGS="$LDFLAGS -fPIC -L$SYSROOT_PREFIX/usr/lib/iconv"
} }
pre_make_target() { pre_make_target() {

View File

@ -37,6 +37,7 @@ pre_configure_target() {
export CFLAGS="$CFLAGS -fPIC" export CFLAGS="$CFLAGS -fPIC"
export CXXFLAGS="$CXXFLAGS -fPIC" export CXXFLAGS="$CXXFLAGS -fPIC"
export LDFLAGS="$LDFLAGS -fPIC" export LDFLAGS="$LDFLAGS -fPIC"
export LIBS="-L$SYSROOT_PREFIX/usr/lib/iconv"
} }
make_target() { make_target() {

View File

@ -38,7 +38,7 @@ post_unpack() {
} }
pre_configure_target() { pre_configure_target() {
export LDFLAGS=$(echo $LDFLAGS | sed -e "s|-Wl,--as-needed||") export LDFLAGS="$(echo $LDFLAGS | sed -e "s|-Wl,--as-needed||") -L$SYSROOT_PREFIX/usr/lib/iconv"
} }
pre_make_target() { pre_make_target() {