diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-05 15:29:18 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-05 15:29:18 -0500 |
commit | 45290cb5decb8052acaed4def2b8a74d5f5e32ad (patch) | |
tree | 87140c50ab219cee1331d1861a5fa1b0eba8a06e | |
parent | b5a7ac1003316592cdfc7a37d90c64c4c91d4745 (diff) | |
download | tdevelop-45290cb5decb8052acaed4def2b8a74d5f5e32ad.tar.gz tdevelop-45290cb5decb8052acaed4def2b8a74d5f5e32ad.zip |
Fix subversion library detection on multiarch
-rw-r--r-- | vcs/subversion/configure.in.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vcs/subversion/configure.in.in b/vcs/subversion/configure.in.in index 9bccba66..6c132ae3 100644 --- a/vcs/subversion/configure.in.in +++ b/vcs/subversion/configure.in.in @@ -95,7 +95,8 @@ if test "x$with_subversion" != xno; then AC_MSG_RESULT([not found]) SVN_SUBDIR= fi - SVN_LIBS="/usr/local/lib /usr/lib /usr/lib64" + SVN_MULTIARCH_LIBS="`find /usr/lib/ -maxdepth 1 -type d | xargs echo`" + SVN_LIBS="/usr/local/lib /usr/lib /usr/lib64 $SVN_MULTIARCH_LIBS" AC_ARG_WITH(svn-lib, [[ --with-svn-lib=DIR Use the given path to the subversion libraries.]], [ |