diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-05 15:29:18 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-23 19:35:28 +0200 |
commit | 3000d0c09d8c85a2f69d46d2f36a53daeb644712 (patch) | |
tree | 70fb5a51d2ad80c0356f8c1209d3edae5a131b8d /vcs | |
parent | 615754c7b642d4b4bb6b35f1df061e50a3b6d4b6 (diff) | |
download | tdevelop-3000d0c09d8c85a2f69d46d2f36a53daeb644712.tar.gz tdevelop-3000d0c09d8c85a2f69d46d2f36a53daeb644712.zip |
Fix subversion library detection on multiarch
(cherry picked from commit 45290cb5decb8052acaed4def2b8a74d5f5e32ad)
Diffstat (limited to 'vcs')
-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.]], [ |