diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-23 10:05:22 +0100 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2012-12-23 10:05:22 +0100 |
commit | b03aa8371cbc8f0e968fb485bec56cf48f8cebb6 (patch) | |
tree | 87f0b6511f8f83a1924330b3440b265acad5e0e3 /PLUGINS/src/osddemo/Makefile | |
parent | e66ef9f695b580def34424a95aa29a70d0f695ab (diff) | |
download | vdr-b03aa8371cbc8f0e968fb485bec56cf48f8cebb6.tar.gz vdr-b03aa8371cbc8f0e968fb485bec56cf48f8cebb6.tar.bz2 |
Made LIBDIR and LOCDIR non-overwriteable in plugin Makefiles
Diffstat (limited to 'PLUGINS/src/osddemo/Makefile')
-rw-r--r-- | PLUGINS/src/osddemo/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PLUGINS/src/osddemo/Makefile b/PLUGINS/src/osddemo/Makefile index 607770b5..3ef4fdc3 100644 --- a/PLUGINS/src/osddemo/Makefile +++ b/PLUGINS/src/osddemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 2.10 2012/12/22 11:51:34 kls Exp $ +# $Id: Makefile 2.11 2012/12/23 10:04:05 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -16,8 +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 --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) -LIBDIR ?= $(DESTDIR)$(call PKGCFG,libdir) +PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc)) +LIBDIR = $(DESTDIR)$(call PKGCFG,libdir) # TMPDIR ?= /tmp |