summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-09-09 09:29:15 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-09-09 09:29:15 +0200
commit3d60eba129caad4af084340a8466a96a6050e69e (patch)
tree6c9719e8eca7172c33001562dc6222ce4e24e915
parente6e9996060ea565eed33e7e04f74948001355fb6 (diff)
downloadvdr-3d60eba129caad4af084340a8466a96a6050e69e.tar.gz
vdr-3d60eba129caad4af084340a8466a96a6050e69e.tar.bz2
Fixed handling default values for directories
-rw-r--r--Makefile22
1 files changed, 14 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index afdda32f..9c9fe9fb 100644
--- a/Makefile
+++ b/Makefile
@@ -4,7 +4,7 @@
# See the main source file 'vdr.c' for copyright information and
# how to reach the author.
#
-# $Id: Makefile 2.28 2012/09/01 13:22:33 kls Exp $
+# $Id: Makefile 2.29 2012/09/09 09:29:15 kls Exp $
.DELETE_ON_ERROR:
@@ -76,6 +76,12 @@ DEFINES += -DRESDIR=\"$(RESDIR)\"
DEFINES += -DPLUGINDIR=\"$(PLUGINLIBDIR)\"
DEFINES += -DLOCDIR=\"$(LOCDIR)\"
+# Default values for directories:
+
+CONFDIRDEF = $(firstword $(CONFDIR) $(VIDEODIR))
+CACHEDIRDEF = $(firstword $(CACHEDIR) $(VIDEODIR))
+RESDIRDEF = $(firstword $(RESDIR) $(CONFDIRDEF))
+
# The version numbers of VDR and the plugin API (taken from VDR's "config.h"):
VDRVERSION = $(shell sed -ne '/define VDRVERSION/s/^.*"\(.*\)".*$$/\1/p' config.h)
@@ -112,10 +118,10 @@ $(SILIB):
vdr.pc: Makefile Make.global
@echo "bindir=$(BINDIR)" > $@
@echo "includedir=$(INCDIR)" >> $@
- @echo "configdir=$(CONFDIR)" >> $@
+ @echo "configdir=$(CONFDIRDEF)" >> $@
@echo "videodir=$(VIDEODIR)" >> $@
- @echo "cachedir=$(CACHEDIR)" >> $@
- @echo "resdir=$(RESDIR)" >> $@
+ @echo "cachedir=$(CACHEDIRDEF)" >> $@
+ @echo "resdir=$(RESDIRDEF)" >> $@
@echo "plugindir=$(PLUGINLIBDIR)" >> $@
@echo "localedir=$(LOCDIR)" >> $@
@echo "apiversion=$(APIVERSION)" >> $@
@@ -200,12 +206,12 @@ install-bin: vdr
install-dirs:
@mkdir -p $(DESTDIR)$(VIDEODIR)
- @mkdir -p $(DESTDIR)$(CONFDIR)
- @mkdir -p $(DESTDIR)$(CACHEDIR)
- @mkdir -p $(DESTDIR)$(RESDIR)
+ @mkdir -p $(DESTDIR)$(CONFDIRDEF)
+ @mkdir -p $(DESTDIR)$(CACHEDIRDEF)
+ @mkdir -p $(DESTDIR)$(RESDIRDEF)
install-conf:
- @cp *.conf $(DESTDIR)$(CONFDIR)
+ @cp *.conf $(DESTDIR)$(CONFDIRDEF)
# Documentation: