| 12345678910111213141516171819202122 |
- Index: SVN-Notify-2.70/lib/SVN/Notify.pm
- --- SVN-Notify-2.70/lib/SVN/Notify.pm.orig 2007-06-17 07:08:29 +0200
- +++ SVN-Notify-2.70/lib/SVN/Notify.pm 2007-07-30 19:48:01 +0200
- @@ -851,7 +851,7 @@
- my $exe = SVN::Notify->find_exe($exe_name);
-
- This method searches through the system path, as well as the extra directories
- -F</usr/local/bin> and F</usr/sbin> (because they're common paths for
- +F<@l_prefix@/bin> and F</usr/sbin> (because they're common paths for
- C<svnlook> and C<sendmail> 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<find_exe()> returns undef.
- @@ -863,7 +863,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);
|