mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Fixed a bug in the Makefile when installing plugins with LCLBLD=1
This commit is contained in:
parent
99d7fe6cf9
commit
a4169ceb22
@ -232,6 +232,7 @@ Stefan Huelswitt <s.huelswitt@gmx.de>
|
|||||||
featured DVB cards
|
featured DVB cards
|
||||||
for pointing out a bug in handling lowercase polarization characters in channel
|
for pointing out a bug in handling lowercase polarization characters in channel
|
||||||
definitions if no DiSEqC is used
|
definitions if no DiSEqC is used
|
||||||
|
for fixing a bug in the Makefile when installing plugins with LCLBLD=1
|
||||||
|
|
||||||
Ulrich Röder <roeder@efr-net.de>
|
Ulrich Röder <roeder@efr-net.de>
|
||||||
for pointing out that there are channels that have a symbol rate higher than 27500
|
for pointing out that there are channels that have a symbol rate higher than 27500
|
||||||
|
2
HISTORY
2
HISTORY
@ -7919,3 +7919,5 @@ Video Disk Recorder Revision History
|
|||||||
2014-04-13: Version 2.0.7
|
2014-04-13: Version 2.0.7
|
||||||
|
|
||||||
- Fixed a possible division by zero in frame rate detection.
|
- Fixed a possible division by zero in frame rate detection.
|
||||||
|
- Fixed a bug in the Makefile when installing plugins with LCLBLD=1 (thanks to
|
||||||
|
Stefan Huelswitt).
|
||||||
|
4
Makefile
4
Makefile
@ -4,7 +4,7 @@
|
|||||||
# See the main source file 'vdr.c' for copyright information and
|
# See the main source file 'vdr.c' for copyright information and
|
||||||
# how to reach the author.
|
# how to reach the author.
|
||||||
#
|
#
|
||||||
# $Id: Makefile 2.54 2013/03/11 15:01:01 kls Exp $
|
# $Id: Makefile 2.54.1.1 2015/01/01 13:59:51 kls Exp $
|
||||||
|
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
@ -220,7 +220,7 @@ plugins: include-dir vdr.pc
|
|||||||
INCLUDES="-I$(CWD)/include"\
|
INCLUDES="-I$(CWD)/include"\
|
||||||
$(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" VDRDIR="$(CWD)" || failed="$$failed $$i";\
|
$(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" VDRDIR="$(CWD)" || failed="$$failed $$i";\
|
||||||
if [ -n "$(LCLBLD)" ] ; then\
|
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\
|
if [ -d $(PLUGINDIR)/src/$$i/po ]; then\
|
||||||
for l in `ls $(PLUGINDIR)/src/$$i/po/*.mo`; do\
|
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;\
|
install -D -m644 $$l $(LOCDIR)/`basename $$l | cut -d. -f1`/LC_MESSAGES/vdr-$$i.mo;\
|
||||||
|
Loading…
Reference in New Issue
Block a user