summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNikos Mavrogiannopoulos <nmav@redhat.com>2016-12-05 10:33:07 +0100
committerNikos Mavrogiannopoulos <nmav@redhat.com>2016-12-05 10:33:10 +0100
commitd1221ea4777c15c4b494c8977fccf447884f58bc (patch)
treeeb3b436ada9105950ec731aa654e6b2455da4947
parentc0d9e58db9fe2836ca2b5cfe033dbe943d70cdb2 (diff)
downloadgnutls-d1221ea4777c15c4b494c8977fccf447884f58bc.tar.gz
configure: search 64-bit paths for libtspi before 32-bit paths
That is, because 64-bit systems may have both 64-bit and 32-bit paths while 32-bit systems only the latter.
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 732bff663f..61526040d1 100644
--- a/configure.ac
+++ b/configure.ac
@@ -643,7 +643,7 @@ fi
AM_CONDITIONAL(ENABLE_TROUSERS, test "$with_tpm" != "no")
-for l in /usr/lib /usr/lib64 /lib /lib64 /usr/lib/x86_64-linux-gnu/; do
+for l in /usr/lib64 /usr/lib /lib64 /lib /usr/lib/x86_64-linux-gnu/; do
if test -f "${l}/libtspi.so.1";then
default_trousers_lib="${l}/libtspi.so.1"
fi