mirror of
https://github.com/OpenVPN/openvpn.git
synced 2025-05-09 05:31:05 +08:00

git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@2959 e7ae566f-a301-0410-adde-c780ea21d3b5
18 lines
402 B
Bash
18 lines
402 B
Bash
#!/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
|