Sorry for the repost, but the Perl modules have been broken for such a
long time. Please apply, or tell me what is wrong with it.
I see no way this could be worse than what already is, in any case.
[[
Give Perl modules the correct run-time path (issue 2479); they should use
the installation directory, not just the build directory.
* subversion/bindings/swig/perl/native/Makefile.PL.in
Add libdir first in the run-time path.
]]
Index: subversion/bindings/swig/perl/native/Makefile.PL.in
===================================================================
--- subversion/bindings/swig/perl/native/Makefile.PL.in (revision 18963)
+++ subversion/bindings/swig/perl/native/Makefile.PL.in (working copy)
@@ -14,9 +14,13 @@
my $svnlib_builddir = "${top_builddir}/subversion";
my $swig_srcdir = "${svnlib_srcdir}/bindings/swig";
my $swig_builddir = "${svnlib_builddir}/bindings/swig";
+my $prefix = '@prefix@';
+my $exec_prefix = "@exec_prefix@";
+my $libdir = "@libdir@";
my @modules = qw/client delta fs ra repos wc/;
-my @ldpaths = ("$swig_builddir/perl/libsvn_swig_perl/.libs",
+my @ldpaths = ($libdir,
+ "$swig_builddir/perl/libsvn_swig_perl/.libs",
map {"$svnlib_builddir/libsvn_$_/.libs"} (@modules, qw/diff subr
ra_local
ra_svn
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sat Mar 25 13:58:59 2006