From 163945045d5474dbf54a2c96e84450f4d2e56d15 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sat, 2 Jan 2021 15:22:42 +0100 Subject: Fixed handling $(PKG_CONFIG) in newplugin --- CONTRIBUTORS | 1 + HISTORY | 1 + newplugin | 4 ++-- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index b983bf74..72837314 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -2773,6 +2773,7 @@ Winfried K for adding initialization of cDvbFrontend::frontendInfo for improving handling missing VDRPluginDestroyer() for fixing a compiler warning + for fixing handling $(PKG_CONFIG) in newplugin Hans-Werner Hilse for adding the command line option --userdump to enable core dumps in case VDR diff --git a/HISTORY b/HISTORY index 089f95ca..50d1c4f2 100644 --- a/HISTORY +++ b/HISTORY @@ -9570,3 +9570,4 @@ Video Disk Recorder Revision History Makefile now makes sure it is set before calling doxygen. - Fixed a crash in the SVDRP command CLRE in case a non-existing channel number is given (reported by Manuel Reimer). +- Fixed handling $(PKG_CONFIG) in newplugin (thanks to Winfried Köhler). diff --git a/newplugin b/newplugin index e51d45cb..0e023561 100755 --- a/newplugin +++ b/newplugin @@ -12,7 +12,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: newplugin 4.4 2020/06/22 15:08:46 kls Exp $ +# $Id: newplugin 4.4.1.1 2021/01/02 15:22:42 kls Exp $ $PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin \n"; @@ -76,7 +76,7 @@ VERSION = \$(shell grep 'static const char \\*VERSION *=' \$(PLUGIN).c | awk '{ # Use package data if installed...otherwise assume we're under the VDR source directory: PKG_CONFIG ?= pkg-config -PKGCFG = \$(if \$(VDRDIR),\$(shell $(PKG_CONFIG) --variable=\$(1) \$(VDRDIR)/vdr.pc),\$(shell PKG_CONFIG_PATH="\$\$PKG_CONFIG_PATH:../../.." $(PKG_CONFIG) --variable=\$(1) vdr)) +PKGCFG = \$(if \$(VDRDIR),\$(shell \$(PKG_CONFIG) --variable=\$(1) \$(VDRDIR)/vdr.pc),\$(shell PKG_CONFIG_PATH="\$\$PKG_CONFIG_PATH:../../.." \$(PKG_CONFIG) --variable=\$(1) vdr)) LIBDIR = \$(call PKGCFG,libdir) LOCDIR = \$(call PKGCFG,locdir) PLGCFG = \$(call PKGCFG,plgcfg) -- cgit v1.2.3