diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2014-01-01 13:35:13 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2014-01-01 13:35:13 +0100 |
commit | ea613e6b2651bedacce9413df0a9e3c80afb6c1c (patch) | |
tree | f18e62a541dd64e8fa30ad9259299e556bee152f /HISTORY | |
parent | 16dd077fb2d9f2a352e14039cea43ebe0ffb6048 (diff) | |
download | vdr-ea613e6b2651bedacce9413df0a9e3c80afb6c1c.tar.gz vdr-ea613e6b2651bedacce9413df0a9e3c80afb6c1c.tar.bz2 |
Avoiding unnecessary pkg-config warnings in plugin Makefiles
Diffstat (limited to 'HISTORY')
-rw-r--r-- | HISTORY | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -8105,3 +8105,7 @@ Video Disk Recorder Revision History - Deleted a superfluous assignment in cPipe::Open() (reported by Ville Skyttä). - The script given to VDR with the '-r' option is now also called after the recording process has actually started (thanks to Christian Kaiser). +- Avoiding unnecessary pkg-config warnings in plugin Makefiles (thanks to Ville Skyttä). + Plugin authors may want to apply the following change to their Makefile: + -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)) |