Skip to content

Commit

Permalink
Fix prepdist script, needs locally compiled Botan for full support.
Browse files Browse the repository at this point in the history
  • Loading branch information
jelu committed Feb 10, 2014
1 parent c14a0c8 commit 87ae5c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion prepdist.sh
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -13,5 +14,6 @@ fi &&
mkdir -p build &&
cd build &&
../configure --prefix=${PREFIX} \
--with-botan=/usr \
--with-crypto-backend=botan \
--with-botan=/usr/local \
$@

0 comments on commit 87ae5c3

Please sign in to comment.