Index: SVN-Notify-2.71/lib/SVN/Notify.pm --- SVN-Notify-2.71/lib/SVN/Notify.pm.orig 2008-02-29 18:03:27 +0100 +++ SVN-Notify-2.71/lib/SVN/Notify.pm 2008-03-03 07:42:18 +0100 @@ -938,7 +938,7 @@ my $exe = SVN::Notify->find_exe($exe_name); This method searches through the system path, as well as the extra directories -F and F (because they're common paths for +F<@l_prefix@/bin> and F (because they're common paths for C and C for an executable file with the name C<$exe_name>. The first one it finds is returned with its full path. If none is found, C returns undef. @@ -950,7 +950,7 @@ $exe .= '.exe' if WIN32; require File::Spec; for my $path ( - File::Spec->path, qw(/usr/local/bin /usr/bin /usr/sbin), + File::Spec->path, qw(@l_prefix@/bin /usr/bin /usr/sbin), 'C:\\program files\\subversion\\bin' ) { my $file = File::Spec->catfile($path, $exe);