From 87ae5c3658155f20fd321dec6333a7407da50689 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jerry=20Lundstr=C3=B6m?= Date: Mon, 10 Feb 2014 14:46:35 +0100 Subject: [PATCH] Fix prepdist script, needs locally compiled Botan for full support. --- prepdist.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/prepdist.sh b/prepdist.sh index eff4121f7..93e5cb23d 100644 --- a/prepdist.sh +++ b/prepdist.sh @@ -1,6 +1,7 @@ #!/bin/sh PREFIX=/tmp/softhsm2-release +export LD_LIBRARY_PATH=/usr/local/lib if [ ! -f autogen.sh -a ! -f configure ]; then echo "Unable to continue, no autogen.sh or configure" @@ -13,5 +14,6 @@ fi && mkdir -p build && cd build && ../configure --prefix=${PREFIX} \ - --with-botan=/usr \ + --with-crypto-backend=botan \ + --with-botan=/usr/local \ $@