diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-22 15:08:46 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-22 15:08:46 +0200 |
commit | f5dba03447fa73da6e181ead7fb98c2b0a2fed41 (patch) | |
tree | 185a4960511debd929b05357545dd2fdf44bbe73 /PLUGINS/src/epgtableid0 | |
parent | 73bcd869dcb869496dc04234092167ade8af6403 (diff) | |
download | vdr-f5dba03447fa73da6e181ead7fb98c2b0a2fed41.tar.gz vdr-f5dba03447fa73da6e181ead7fb98c2b0a2fed41.tar.bz2 |
Made the call to pkg_config configurable via the PKG_CONFIG macro, which is necessary for cross-building VDR
Diffstat (limited to 'PLUGINS/src/epgtableid0')
-rw-r--r-- | PLUGINS/src/epgtableid0/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/PLUGINS/src/epgtableid0/Makefile b/PLUGINS/src/epgtableid0/Makefile index ef7cc71f..f3ba5120 100644 --- a/PLUGINS/src/epgtableid0/Makefile +++ b/PLUGINS/src/epgtableid0/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 4.2 2017/05/29 08:30:00 kls Exp $ +# $Id: Makefile 4.3 2020/06/22 15:08:46 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -16,7 +16,8 @@ VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ pri ### The directory environment: # Use package data if installed...otherwise assume we're under the VDR source directory: -PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." pkg-config --variable=$(1) vdr)) +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)) LIBDIR = $(call PKGCFG,libdir) PLGCFG = $(call PKGCFG,plgcfg) # |