diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-03 12:25:09 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2020-06-03 12:25:09 +0200 |
commit | e6bf3b697515627f6357c6ca5a122139b12a8934 (patch) | |
tree | ac8dfa15c6ace52b85482d87d5e4763a16118170 /Makefile | |
parent | 196785ff054a3236747ac8ad0302300c052d377a (diff) | |
download | vdr-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-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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;\ |