mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
The 'plugins' target of the VDR Makefile now also copies files matching the wildcard "lib$$i-*.so" (previously only "libvdr-*.so") and also descends into subdirectories of the plugin source
This commit is contained in:
parent
3488050173
commit
ccbe1905a1
3
HISTORY
3
HISTORY
@ -7737,3 +7737,6 @@ Video Disk Recorder Revision History
|
|||||||
- Updated the Polish OSD texts (thanks to Marek Nazarko).
|
- Updated the Polish OSD texts (thanks to Marek Nazarko).
|
||||||
- Fixed using PATH_MAX and NAME_MAX (+/-1 because the first one includes the
|
- Fixed using PATH_MAX and NAME_MAX (+/-1 because the first one includes the
|
||||||
terminating 0, while the latter doesn't).
|
terminating 0, while the latter doesn't).
|
||||||
|
- The 'plugins' target of the VDR Makefile now also copies files matching the wildcard
|
||||||
|
"lib$$i-*.so" (previously only "libvdr-*.so") and also descends into subdirectories
|
||||||
|
of the plugin source.
|
||||||
|
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.53 2013/02/24 10:40:23 kls Exp $
|
# $Id: Makefile 2.54 2013/03/11 15:01:01 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 libvdr-*.so; do install $$l $(LIBDIR)/$$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