Removed the '.pl' suffix from all scripts

This commit is contained in:
Klaus Schmidinger 2011-12-04 14:36:37 +01:00
parent 7ab9d4fcfd
commit a613816050
8 changed files with 13 additions and 11 deletions

View File

@ -1925,6 +1925,7 @@ Ville Skytt
for fixing a crash when deleting a recording while cutting it for fixing a crash when deleting a recording while cutting it
for fixing several spelling errors for fixing several spelling errors
for adding generating a pkg-config file to the Makefile for adding generating a pkg-config file to the Makefile
for removing the '.pl' suffix from all scripts (thanks to Ville Skyttä).
Steffen Beyer <cpunk@reactor.de> Steffen Beyer <cpunk@reactor.de>
for fixing setting the colored button help after deleting a recording in case the next for fixing setting the colored button help after deleting a recording in case the next

View File

@ -6774,3 +6774,4 @@ Video Disk Recorder Revision History
- The new SVDRP command UPDR can be used to trigger an update of the list of - The new SVDRP command UPDR can be used to trigger an update of the list of
recordings (thanks to Lars Hanisch). recordings (thanks to Lars Hanisch).
- Added generating a pkg-config file to the Makefile (thanks to Ville Skyttä). - Added generating a pkg-config file to the Makefile (thanks to Ville Skyttä).
- Removed the '.pl' suffix from all scripts (thanks to Ville Skyttä).

View File

@ -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.20 2011/12/04 14:12:49 kls Exp $ # $Id: Makefile 2.21 2011/12/04 14:17:35 kls Exp $
.DELETE_ON_ERROR: .DELETE_ON_ERROR:
@ -190,7 +190,7 @@ install: install-bin install-conf install-doc install-plugins install-i18n insta
install-bin: vdr install-bin: vdr
@mkdir -p $(DESTDIR)$(BINDIR) @mkdir -p $(DESTDIR)$(BINDIR)
@cp --remove-destination vdr svdrpsend.pl $(DESTDIR)$(BINDIR) @cp --remove-destination vdr svdrpsend $(DESTDIR)$(BINDIR)
# Configuration files: # Configuration files:

View File

@ -7,12 +7,12 @@
# plus an 'index.htm' file. All output files are written into the current # plus an 'index.htm' file. All output files are written into the current
# directory. # directory.
# #
# Usage: epg2html.pl < /video/epg.data # Usage: epg2html < /video/epg.data
# #
# 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: epg2html.pl 1.7 2006/04/17 12:19:08 kls Exp $ # $Id: epg2html 2.1 2011/12/04 14:17:35 kls Exp $
@Index = (); @Index = ();

View File

@ -5,12 +5,12 @@
# Extracts all texts from the file i18n.c and creates language # Extracts all texts from the file i18n.c and creates language
# specific *.po files. # specific *.po files.
# #
# Usage: i18n-to-gettext.pl # Usage: i18n-to-gettext
# #
# 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: i18n-to-gettext.pl 2.1 2009/10/18 14:07:49 kls Exp $ # $Id: i18n-to-gettext 2.2 2011/12/04 14:17:35 kls Exp $
# How to convert an actual plugin: # How to convert an actual plugin:
# #

View File

@ -1,7 +1,7 @@
# #
# Makefile for a libsi # Makefile for a libsi
# #
# $Id: Makefile 2.1 2010/11/07 13:31:05 kls Exp $ # $Id: Makefile 2.2 2011/12/04 14:18:38 kls Exp $
### The C++ compiler and options: ### The C++ compiler and options:
@ -52,4 +52,4 @@ clean:
dist: dist:
tar cvzf libsi.tar.gz -C .. libsi/util.c libsi/si.c libsi/section.c libsi/descriptor.c \ tar cvzf libsi.tar.gz -C .. libsi/util.c libsi/si.c libsi/section.c libsi/descriptor.c \
libsi/util.h libsi/si.h libsi/section.h libsi/descriptor.h libsi/headers.h libsi/Makefile libsi/gendescr.pl libsi/util.h libsi/si.h libsi/section.h libsi/descriptor.h libsi/headers.h libsi/Makefile libsi/gendescr

View File

@ -1,6 +1,6 @@
#!/usr/bin/perl #!/usr/bin/perl
# $Id: gendescr.pl 1.2 2003/12/13 10:42:05 kls Exp $ # $Id: gendescr 1.2 2003/12/13 10:42:05 kls Exp $
print "Name (ohne ...Descriptor):"; print "Name (ohne ...Descriptor):";
$name=<STDIN>; $name=<STDIN>;

View File

@ -5,12 +5,12 @@
# Converts all 'summary.vdr' files in the video directory to the # Converts all 'summary.vdr' files in the video directory to the
# 'info.vdr' format as used from VDR version 1.3.25 upward. # 'info.vdr' format as used from VDR version 1.3.25 upward.
# #
# Usage: summary2info.pl /video # Usage: summary2info /video
# #
# 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: summary2info.pl 1.6 2006/04/17 12:19:24 kls Exp $ # $Id: summary2info 2.1 2011/12/04 14:17:35 kls Exp $
$VideoDir = $ARGV[0] || die "please provide the name of the video directory\n"; $VideoDir = $ARGV[0] || die "please provide the name of the video directory\n";