Author: pebender
Date: Wed Oct 8 11:45:25 2008
New Revision: 3813
Modified:
trunk/gar-minimyth/html/minimyth/document-changelog.txt
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/mythtv.pm
trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
Log:
- Fixed a bug that caused perl init scripts to incorrectly declare mtd as
missing when when DVD ripping support was enabled.
- Modified MiniMyth::application_path so that it removed trailing new
line.
Modified: trunk/gar-minimyth/html/minimyth/document-changelog.txt
==============================================================================
--- trunk/gar-minimyth/html/minimyth/document-changelog.txt (original)
+++ trunk/gar-minimyth/html/minimyth/document-changelog.txt Wed Oct 8
11:45:25 2008
@@ -69,7 +69,11 @@
- Fixed a bug that caused the perl init scripts to fail to configure
the
playback profile.
- Fixed errors in the example 'minimyth.pm' found in the documentation.
- - Fixed bug that caused MythTV 0.21 and trunk to fail to detect fftw3f.
+ - Fixed a bug that caused MythTV 0.21 and trunk to fail to detect
fftw3f.
+ - Fixed a bug that caused perl init scripts to incorrectly declare mtd
as
+ missing when when DVD ripping support was enabled.
+ - Modified MiniMyth::application_path so that it removed trailing new
+ line.
Modified build system
- Added mm_GRAPHICS for controlling which graphics drivers are
included.
Modified:
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/mythtv.pm
==============================================================================
---
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/mythtv.pm
(original)
+++
trunk/gar-minimyth/script/meta/minimyth/files/source/rootfs/etc/rc.d.perl/init/mythtv.pm
Wed Oct 8 11:45:25 2008
@@ -97,7 +97,7 @@
{
my $mtd = $minimyth->application_path('mtd');
my $transcode = $minimyth->application_path('transcode');
- if ($mtd)
+ if (! $mtd)
{
$minimyth->message_output('err', "error: 'mtd' not found.");
return 0;
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums (original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/checksums Wed Oct 8
11:45:25 2008
@@ -1 +1 @@
-aae7ecdc4b83b34dcd69830f06eb8346 download/MiniMyth.pm
+73ae0c2d299752ceb61105d061afde1d download/MiniMyth.pm
Modified: trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
==============================================================================
--- trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm
(original)
+++ trunk/gar-minimyth/script/perl/perl-MiniMyth/files/MiniMyth.pm Wed Oct
8 11:45:25 2008
@@ -53,6 +53,7 @@
{
while (<FILE>)
{
+ chomp;
$path = $_;
last;
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"minimyth-commits" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/minimyth-commits?hl=en
-~----------~----~----~----~------~----~------~--~---