summaryrefslogtreecommitdiff
path: root/filesystems/fuse-svnfs/patches/patch-aa
blob: c9516dd1c94c222679a432890f6ba233d9c5197d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
$NetBSD: patch-aa,v 1.3 2011/01/06 16:27:33 agc Exp $

Don't hardcode paths

--- svn-config.pl.orig	2007-06-11 04:50:03.000000000 -0400
+++ svn-config.pl
@@ -47,7 +47,7 @@ if( $libs ) {
 }
 
 if( $includes ) {
-   open(IN, "ls -d /usr/include/subversion* 2>/dev/null |");
+   open(IN, "ls -d @LOCALBASE@/include/subversion-* 2>/dev/null |");
    while( <IN> ) {
       chomp();
       $out_includes = $out_includes."-I".$_." ";