From 349cfa7acb95abe865209a28e417ec74b56f9bba Mon Sep 17 00:00:00 2001 From: Alberto Gonzalez Iniesta Date: Tue, 21 Feb 2012 15:53:40 +0100 Subject: Imported Upstream version 2.2.1 --- install-win32/getpkcs11helper | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 install-win32/getpkcs11helper (limited to 'install-win32/getpkcs11helper') diff --git a/install-win32/getpkcs11helper b/install-win32/getpkcs11helper new file mode 100644 index 0000000..8fcfdd4 --- /dev/null +++ b/install-win32/getpkcs11helper @@ -0,0 +1,17 @@ +#!/bin/sh + +# get version.nsi definitions +. autodefs/defs.sh + +# Get PKCS11-helper libraries +if [ -d "$PKCS11_HELPER_DIR" ] ; then + mkdir -p $GENOUT/lib &>/dev/null + for f in libpkcs11-helper-1.dll ; do + cp $PKCS11_HELPER_DIR/usr/local/bin/$f $GENOUT/lib + if [ -z "$NO_STRIP" ]; then + strip $GENOUT/lib/$f + fi + done +else + echo PKCS11-helper DIR $PKCS11_HELPER_DIR NOT FOUND +fi -- cgit v1.2.3