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.
|
|
|
|
Index: SVN-Notify-2.77/lib/SVN/Notify.pm
|
|
|
|
|
--- SVN-Notify-2.77/lib/SVN/Notify.pm.orig 2008-02-29 18:03:27 +0100
|
|
|
|
|
+++ SVN-Notify-2.77/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</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.
|
|
|
|
|
@@ -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);
|