summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2020-06-03 12:25:09 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2020-06-03 12:25:09 +0200
commite6bf3b697515627f6357c6ca5a122139b12a8934 (patch)
treeac8dfa15c6ace52b85482d87d5e4763a16118170 /Makefile
parent196785ff054a3236747ac8ad0302300c052d377a (diff)
downloadvdr-e6bf3b697515627f6357c6ca5a122139b12a8934.tar.gz
vdr-e6bf3b697515627f6357c6ca5a122139b12a8934.tar.bz2
Added a missing '-D' to the 'plugins' target of the Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index b1be3011..b9837496 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 4.6 2019/05/05 13:31:56 kls Exp $
+# $Id: Makefile 4.7 2020/06/03 12:22:05 kls Exp $
.DELETE_ON_ERROR:
@@ -244,7 +244,7 @@ plugins: include-dir vdr.pc
INCLUDES="-I$(CWD)/include"\
$(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" VDRDIR="$(CWD)" || failed="$$failed $$i";\
if [ -n "$(LCLBLD)" ] ; then\
- (cd $(PLUGINDIR)/src/$$i; for l in `find -name "libvdr-*.so" -o -name "lib$$i-*.so"`; do install $$l $(LIBDIR)/`basename $$l`.$(APIVERSION); done);\
+ (cd $(PLUGINDIR)/src/$$i; for l in `find -name "libvdr-*.so" -o -name "lib$$i-*.so"`; do install -D $$l $(LIBDIR)/`basename $$l`.$(APIVERSION); done);\
if [ -d $(PLUGINDIR)/src/$$i/po ]; then\
for l in `ls $(PLUGINDIR)/src/$$i/po/*.mo`; do\
install -D -m644 $$l $(LOCDIR)/`basename $$l | cut -d. -f1`/LC_MESSAGES/vdr-$$i.mo;\