Merge pull request #4538 from vpeter4/vdrfix

vdr-addon: fixes for missing dummydevice plugin and undefined symbol …
This commit is contained in:
Stephan Raue 2015-12-31 01:25:47 +01:00
commit 21e53f27bc
2 changed files with 3 additions and 1 deletions

View File

@ -47,8 +47,9 @@ make_target() {
post_make_target() { post_make_target() {
VDR_DIR=$(get_build_dir vdr) VDR_DIR=$(get_build_dir vdr)
VDR_APIVERSION=`sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$/\1/p' $VDR_DIR/config.h` VDR_APIVERSION=`sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$/\1/p' $VDR_DIR/config.h`
LIB_NAME=lib${PKG_NAME}
cp --remove-destination libvdr*.so libvdr.so.${VDR_APIVERSION} cp --remove-destination ${LIB_NAME}.so ${LIB_NAME}.so.${VDR_APIVERSION}
$STRIP libvdr-*.so* $STRIP libvdr-*.so*
} }

View File

@ -45,6 +45,7 @@ make_target() {
make \ make \
LIBDIR="." \ LIBDIR="." \
LOCDIR="./locale" \ LOCDIR="./locale" \
LIBS="-lcxxtools-http -lcxxtools" \
all install-i18n all install-i18n
} }