mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 02:08:49 -04:00
16 lines
428 B
Plaintext
16 lines
428 B
Plaintext
$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".$_." ";
|