How do I apply the patch? I'm still a little wet behind the ears,
please excuse me...
Thanks,
Boysenberry
boysenberrys.com | habitatlife.com | selfgnosis.com
On Nov 1, 2005, at 10:20 AM, Geoffrey Young wrote:
I think this is the same problem that just came up in a different
circumstance - $INC{'mod_perl.pm'} being a virtual file in mp2.
try this patch
--Geoff
Index: lib/Apache2/Reload.pm
===================================================================
--- lib/Apache2/Reload.pm (revision 328346)
+++ lib/Apache2/Reload.pm (working copy)
@@ -135,6 +135,7 @@
my $file = $Apache2::Reload::INCS{$key};
next unless defined $file;
+ next unless -f $file; # don't try to reload /dev/null
next if @watch_dirs && !grep { $file =~ /^$_/ } @watch_dirs;
warn "Apache2::Reload: Checking mtime of $key\n" if $DEBUG;