mirror of
https://github.com/VDR4Arch/vdr.git
synced 2023-10-10 13:36:52 +02:00
Added making the /video directory and copying the config files
This commit is contained in:
parent
c52d64f6cb
commit
5833ea922a
3
HISTORY
3
HISTORY
@ -1145,7 +1145,8 @@ Video Disk Recorder Revision History
|
||||
- Checking the return value of '...FileReady...' calls in dvbapi.c for better
|
||||
performance under heavy system load.
|
||||
- New 'make' target 'install', which copies the manual pages and executables
|
||||
to their appropriate system locations.
|
||||
to their appropriate system locations and creates the /video directory if
|
||||
it doesn't exist yet.
|
||||
- Automatic hotkey assignment is now suppressed if the first entry in
|
||||
commands.conf starts with a digit in the range '1'...'9', followed by a blank.
|
||||
- Fixed a bug in switching back the replay mode display in time shift mode
|
||||
|
14
Makefile
14
Makefile
@ -4,7 +4,7 @@
|
||||
# See the main source file 'vdr.c' for copyright information and
|
||||
# how to reach the author.
|
||||
#
|
||||
# $Id: Makefile 1.32 2002/03/29 14:20:27 kls Exp $
|
||||
# $Id: Makefile 1.33 2002/04/01 12:50:48 kls Exp $
|
||||
|
||||
.DELETE_ON_ERROR:
|
||||
|
||||
@ -13,6 +13,8 @@ DTVDIR = ./libdtv
|
||||
MANDIR = /usr/local/man
|
||||
BINDIR = /usr/local/bin
|
||||
|
||||
VIDEODIR = /video
|
||||
|
||||
INCLUDES = -I$(DVBDIR)/ost/include
|
||||
|
||||
DTVLIB = $(DTVDIR)/libdtv.a
|
||||
@ -89,9 +91,13 @@ $(DTVLIB) $(DTVDIR)/libdtv.h:
|
||||
# Install the files:
|
||||
|
||||
install:
|
||||
cp vdr runvdr $(BINDIR)
|
||||
gzip -c vdr.1 > $(MANDIR)/man1/vdr.1.gz
|
||||
gzip -c vdr.5 > $(MANDIR)/man5/vdr.5.gz
|
||||
@cp vdr runvdr $(BINDIR)
|
||||
@gzip -c vdr.1 > $(MANDIR)/man1/vdr.1.gz
|
||||
@gzip -c vdr.5 > $(MANDIR)/man5/vdr.5.gz
|
||||
@if [ ! -d $(VIDEODIR) ]; then\
|
||||
mkdir $(VIDEODIR);\
|
||||
cp *.conf $(VIDEODIR);\
|
||||
fi
|
||||
|
||||
# Housekeeping:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user