diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2021-01-02 14:32:20 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2021-01-02 14:32:20 +0100 |
commit | be9eff0fade6c434cfe03f731e51b0b88a67d9fd (patch) | |
tree | 80243cd1fe3674b3c60fd63f48c4dc488406b784 /newplugin | |
parent | 3f3e47d28032991c4e9f02ef54c21cb5ec196b47 (diff) | |
download | vdr-be9eff0fade6c434cfe03f731e51b0b88a67d9fd.tar.gz vdr-be9eff0fade6c434cfe03f731e51b0b88a67d9fd.tar.bz2 |
Fixed handling $(PKG_CONFIG) in newplugin
Diffstat (limited to 'newplugin')
-rwxr-xr-x | newplugin | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 5.1 2021/01/02 14:32:20 kls Exp $ $PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\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) |