mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added a missing VDRDIR="$(CWD)" to the clean-plugins target of the Makefile
This commit is contained in:
parent
659f67f04f
commit
85969bc0bd
2
HISTORY
2
HISTORY
@ -8473,3 +8473,5 @@ Video Disk Recorder Revision History
|
|||||||
direction (see MANUAL for details).
|
direction (see MANUAL for details).
|
||||||
- Fixed cCamSlot::Assign(), so that it actually ignores the value of Query if Device
|
- Fixed cCamSlot::Assign(), so that it actually ignores the value of Query if Device
|
||||||
is NULL (as described in the header file).
|
is NULL (as described in the header file).
|
||||||
|
- Added a missing VDRDIR="$(CWD)" to the clean-plugins target of the Makefile, to
|
||||||
|
avoid error messages regarding the missing vdr.pc file.
|
||||||
|
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 3.4 2015/01/01 13:52:07 kls Exp $
|
# $Id: Makefile 3.5 2015/02/02 14:47:24 kls Exp $
|
||||||
|
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
@ -250,7 +250,7 @@ plugins: include-dir vdr.pc
|
|||||||
if [ -n "$$failed" ] ; then echo; echo "*** failed plugins:$$failed"; echo; exit 1; fi
|
if [ -n "$$failed" ] ; then echo; echo "*** failed plugins:$$failed"; echo; exit 1; fi
|
||||||
|
|
||||||
clean-plugins:
|
clean-plugins:
|
||||||
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" clean; done
|
@for i in `ls $(PLUGINDIR)/src | grep -v '[^a-z0-9]'`; do $(MAKE) --no-print-directory -C "$(PLUGINDIR)/src/$$i" VDRDIR="$(CWD)" clean; done
|
||||||
@-rm -f $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION)
|
@-rm -f $(PLUGINDIR)/lib/lib*-*.so.$(APIVERSION)
|
||||||
|
|
||||||
# Install the files (note that 'install-pc' must be first!):
|
# Install the files (note that 'install-pc' must be first!):
|
||||||
|
Loading…
Reference in New Issue
Block a user