mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Avoiding unnecessary pkg-config warnings in plugin Makefiles
This commit is contained in:
4
HISTORY
4
HISTORY
@@ -8105,3 +8105,7 @@ Video Disk Recorder Revision History
|
||||
- Deleted a superfluous assignment in cPipe::Open() (reported by Ville Skytt<74>).
|
||||
- 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<74>).
|
||||
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))
|
||||
|
Reference in New Issue
Block a user