Author: pebender
Date: Sun Sep 14 07:51:10 2008
New Revision: 3751
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
Log:
- Fixed a bug that cause the MM_PLUGIN_*_ENABLED variables to not work when
using the perl init scripts.
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 Sun Sep 14
07:51:10 2008
@@ -1,7 +1,7 @@
MiniMyth Changelog
--------------------------------------------------------------------------------
-Changes since 58 (2008-09-13):
+Changes since 58 (2008-09-14):
Current MythTV versions
MythTV 0.21: version 0.21.0, release-0-21-fixes branch svn 18228.
@@ -18,6 +18,10 @@
original command line not the default command line.
- Changed mm_sleep_on_ss so that it daemonizes.
- Changed mm_ss_suspend so that it daemonizes.
+
+Fixed bugs
+ - Fixed a bug that cause the MM_PLUGIN_*_ENABLED variables to not work
when
+ using the perl init scripts.
Renamed packages
Renamed lib/mpeg2dec to lib/libmpeg2.
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
Sun Sep 14 07:51:10 2008
@@ -225,7 +225,7 @@
if (opendir(DIR, $dir))
{
my $filter = File::Basename::basename($_);
- foreach (grep(/^$filter$/, $_))
+ foreach (grep(/^$filter$/, readdir(DIR)))
{
if (-f qq($dir/$_))
{
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---