You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
982 B
21 lines
982 B
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);
|
|
|