summaryrefslogtreecommitdiff
path: root/newplugin
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-12-23 10:05:22 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2012-12-23 10:05:22 +0100
commitb03aa8371cbc8f0e968fb485bec56cf48f8cebb6 (patch)
tree87f0b6511f8f83a1924330b3440b265acad5e0e3 /newplugin
parente66ef9f695b580def34424a95aa29a70d0f695ab (diff)
downloadvdr-b03aa8371cbc8f0e968fb485bec56cf48f8cebb6.tar.gz
vdr-b03aa8371cbc8f0e968fb485bec56cf48f8cebb6.tar.bz2
Made LIBDIR and LOCDIR non-overwriteable in plugin Makefiles
Diffstat (limited to 'newplugin')
-rwxr-xr-xnewplugin8
1 files changed, 4 insertions, 4 deletions
diff --git a/newplugin b/newplugin
index 122b4d3b..a7bd5fcb 100755
--- a/newplugin
+++ b/newplugin
@@ -12,7 +12,7 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
-# $Id: newplugin 2.13 2012/12/22 11:54:34 kls Exp $
+# $Id: newplugin 2.14 2012/12/23 10:05:22 kls Exp $
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
@@ -75,9 +75,9 @@ VERSION = \$(shell grep 'static const char \\*VERSION *=' \$(PLUGIN).c | awk '{
### 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)
-LOCDIR ?= \$(DESTDIR)\$(call PKGCFG,locdir)
+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)
+LOCDIR = \$(DESTDIR)\$(call PKGCFG,locdir)
#
TMPDIR ?= /tmp