summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-01-01 13:55:13 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-01-01 13:55:13 +0100
commitbfdd611fde17ee57bd90cbefa4c3c4f731f613bc (patch)
treebee534a645ca54faeea30cd2592c0ee80c52cdb4 /Makefile
parentffeb43a38abffa6177708c541cd8917dd441a1b6 (diff)
downloadvdr-bfdd611fde17ee57bd90cbefa4c3c4f731f613bc.tar.gz
vdr-bfdd611fde17ee57bd90cbefa4c3c4f731f613bc.tar.bz2
Fixed a bug in the Makefile when installing plugins with LCLBLD=1
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 0fc382e7..40a610ae 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 3.3 2014/04/14 12:08:24 kls Exp $
+# $Id: Makefile 3.4 2015/01/01 13:52:07 kls Exp $
.DELETE_ON_ERROR:
@@ -228,7 +228,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 $$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;\