mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
Added some 'mkdir -p' to the Makefile's 'install' target
This commit is contained in:
parent
af54ce4842
commit
d9817a3ebd
1
HISTORY
1
HISTORY
@ -3685,3 +3685,4 @@ Video Disk Recorder Revision History
|
|||||||
- Now storing the channel id in the info.vdr file even if there is no EPG info
|
- Now storing the channel id in the info.vdr file even if there is no EPG info
|
||||||
available (thanks to Andreas Brachold for reporting that there are empty info.vdr
|
available (thanks to Andreas Brachold for reporting that there are empty info.vdr
|
||||||
files created in that case).
|
files created in that case).
|
||||||
|
- Added some 'mkdir -p' to the Makefile's 'install' target.
|
||||||
|
9
Makefile
9
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 1.76 2005/07/31 11:20:20 kls Exp $
|
# $Id: Makefile 1.77 2005/08/14 11:42:20 kls Exp $
|
||||||
|
|
||||||
.DELETE_ON_ERROR:
|
.DELETE_ON_ERROR:
|
||||||
|
|
||||||
@ -183,11 +183,16 @@ plugins-clean:
|
|||||||
# Install the files:
|
# Install the files:
|
||||||
|
|
||||||
install:
|
install:
|
||||||
|
@mkdir -p $(BINDIR)
|
||||||
@cp vdr runvdr $(BINDIR)
|
@cp vdr runvdr $(BINDIR)
|
||||||
|
@mkdir -p $(BINDIR)/$(PLUGINLIBDIR)
|
||||||
|
@cp $(PLUGINLIBDIR)/* $(BINDIR)/$(PLUGINLIBDIR)
|
||||||
|
@mkdir -p $(MANDIR)/man1
|
||||||
|
@mkdir -p $(MANDIR)/man5
|
||||||
@gzip -c vdr.1 > $(MANDIR)/man1/vdr.1.gz
|
@gzip -c vdr.1 > $(MANDIR)/man1/vdr.1.gz
|
||||||
@gzip -c vdr.5 > $(MANDIR)/man5/vdr.5.gz
|
@gzip -c vdr.5 > $(MANDIR)/man5/vdr.5.gz
|
||||||
@if [ ! -d $(VIDEODIR) ]; then\
|
@if [ ! -d $(VIDEODIR) ]; then\
|
||||||
mkdir $(VIDEODIR);\
|
mkdir -p $(VIDEODIR);\
|
||||||
cp *.conf $(VIDEODIR);\
|
cp *.conf $(VIDEODIR);\
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user