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 /PLUGINS/src/status/Makefile | |
parent | 16dd077fb2d9f2a352e14039cea43ebe0ffb6048 (diff) | |
download | vdr-ea613e6b2651bedacce9413df0a9e3c80afb6c1c.tar.gz vdr-ea613e6b2651bedacce9413df0a9e3c80afb6c1c.tar.bz2 |
Avoiding unnecessary pkg-config warnings in plugin Makefiles
Diffstat (limited to 'PLUGINS/src/status/Makefile')
-rw-r--r-- | PLUGINS/src/status/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/PLUGINS/src/status/Makefile b/PLUGINS/src/status/Makefile index 8f6e26f6..40a0351e 100644 --- a/PLUGINS/src/status/Makefile +++ b/PLUGINS/src/status/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 2.15 2013/01/12 13:45:01 kls Exp $ +# $Id: Makefile 3.1 2014/01/01 13:29:54 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,7 @@ 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 --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) PLGCFG = $(call PKGCFG,plgcfg) # |