diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-05 14:43:48 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2012-06-20 05:10:27 +0200 |
commit | 2c3c4ccec769cf944764565f83d14f3e7360e5c2 (patch) | |
tree | f07da16fb9586584065c700e822e15f32b0faa08 | |
parent | 887e999fe479b436cb900ead49648a6c45854f39 (diff) | |
download | tdesdk-2c3c4ccec769cf944764565f83d14f3e7360e5c2.tar.gz tdesdk-2c3c4ccec769cf944764565f83d14f3e7360e5c2.zip |
Fix multiarch svn detection
(cherry picked from commit a10d1739e60e12684176660cb0d401565bb572e0)
-rw-r--r-- | kioslave/svn/configure.in.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kioslave/svn/configure.in.in b/kioslave/svn/configure.in.in index 9178a008..13fceb85 100644 --- a/kioslave/svn/configure.in.in +++ b/kioslave/svn/configure.in.in @@ -118,7 +118,7 @@ else SVN_SUBDIR= dnl AC_MSG_ERROR([Subversion headers are required. Try --with-svn-include.]) fi - SVN_MULTIARCH_LIBS="/usr/lib/`uname -m`-linux-gnu" + 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.]], |