tvheadend42: dont use $TARGET_* variables

This commit is contained in:
Lukas Rusak 2016-09-24 11:45:11 -07:00
parent 01ceca1c63
commit c61644894b
No known key found for this signature in database
GPG Key ID: 8C310C807E7393A3

View File

@ -47,7 +47,7 @@ fi
PKG_CONFIGURE_OPTS_TARGET="--prefix=/usr \
--arch=$TARGET_ARCH \
--cpu=$TARGET_CPU \
--cc=$TARGET_CC \
--cc=$CC \
--disable-avahi \
--enable-bundle \
--disable-dbus_1 \
@ -87,7 +87,7 @@ pre_configure_target() {
# transcoding link tvheadend with g++
if [ "$TARGET_ARCH" = x86_64 ]; then
pre_make_target() {
export CXX=$TARGET_CXX
export CXX=$CXX
}
fi