diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-05 14:43:48 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2012-05-05 14:43:48 -0500 |
commit | a10d1739e60e12684176660cb0d401565bb572e0 (patch) | |
tree | 0847dd50413aee647e38d046433bc1da58e225a5 | |
parent | fe2ac6eabcdb7d514148f10ef43b08c6e09aa037 (diff) | |
download | tdesdk-a10d1739e60e12684176660cb0d401565bb572e0.tar.gz tdesdk-a10d1739e60e12684176660cb0d401565bb572e0.zip |
Fix multiarch svn detection
-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.]], |