vdr-addon: fixes for missing dummydevice plugin and undefined symbol in restfulapi plugin

This commit is contained in:
Peter Vicman 2015-12-28 11:28:26 +01:00 committed by Stephan Raue
parent 12da32e819
commit 01c6abf2cc
2 changed files with 3 additions and 1 deletions

View File

@ -47,8 +47,9 @@ make_target() {
post_make_target() {
VDR_DIR=$(get_build_dir vdr)
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*
}

View File

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