summaryrefslogtreecommitdiffstats
path: root/install-win32/getpkcs11helper
blob: 7399c1bb1cafa4cbeb13b275023eb489eb185bcf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/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/bin/$f $GENOUT/lib
	strip $GENOUT/lib/$f
    done
else
    echo PKCS11-helper DIR $PKCS11_HELPER_DIR NOT FOUND
fi