diff options
author | horchi <vdr@jwendel.de> | 2019-10-30 08:49:08 +0100 |
---|---|---|
committer | horchi <vdr@jwendel.de> | 2019-10-30 08:49:08 +0100 |
commit | f9c8dd36d36efa145806f7bef97b46382a5442f3 (patch) | |
tree | 4897bfae50156d08dd308dbdc552b3a75fa84e6e /Makefile | |
parent | eaaaa7bbef546c987364cf83e6432f007e643787 (diff) | |
download | vdr-plugin-epg2vdr-1.1.101.tar.gz vdr-plugin-epg2vdr-1.1.101.tar.bz2 |
2019-10-30 version 1.1.101 (horchi)\n - change: Added evaluation of PKG_CONFIG_PATH environment variable (thaks to kfb77@vdr-portal)\n\n1.1.101
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -21,7 +21,7 @@ GIT_REV = $(shell git describe --always 2>/dev/null) ### 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 --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) +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) |